java/sql-dk/src/info/globalcode/sql/dk/formatting/Formatter.java
author František Kučera <franta-hg@frantovo.cz>
Mon, 23 Dec 2013 16:19:21 +0100
branchv_0
changeset 41 514df5061f59
parent 34 9335cf31c0f2
child 91 43e8d52091d5
permissions -rw-r--r--
No special formatting for generated keys. Use 'INSERT … RETURNING id' or 'INSERT … RETURNING *' to get generated keys.
     1 /**
     2  * SQL-DK
     3  * Copyright © 2013 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License, or
     8  * (at your option) any later version.
     9  *
    10  * This program is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    13  * GNU General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 package info.globalcode.sql.dk.formatting;
    19 
    20 import info.globalcode.sql.dk.Parameter;
    21 import info.globalcode.sql.dk.configuration.DatabaseDefinition;
    22 import java.util.List;
    23 
    24 /**
    25  *
    26  * @author Ing. František Kučera (frantovo.cz)
    27  */
    28 public interface Formatter {
    29 
    30 	void writeStartDatabase(DatabaseDefinition databaseDefinition);
    31 
    32 	void writeEndDatabase();
    33 
    34 	void writeStartResultSet();
    35 
    36 	void writeEndResultSet();
    37 
    38 	void writeQuery(String sql);
    39 
    40 	void writeParameters(List<? extends Parameter> parameters);
    41 
    42 	void writeColumnsHeader(ColumnsHeader header);
    43 
    44 	void writeStartRow();
    45 
    46 	void writeColumnValue(Object value);
    47 
    48 	void writeEndRow();
    49 
    50 	void writeStartUpdatesResult();
    51 
    52 	void writeUpdatedRowsCount(int updatedRowsCount);
    53 
    54 	void writeEndUpdatesResult();
    55 }