java/sql-dk/src/info/globalcode/sql/dk/DatabaseConnection.java
author František Kučera <franta-hg@frantovo.cz>
Fri, 10 Jan 2014 23:21:28 +0100
branchv_0
changeset 155 eb3676c6929b
parent 146 4f4f515df807
child 178 5a5fc66f11b1
permissions -rw-r--r--
more JavaDoc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     1
/**
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
 * SQL-DK
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
 * Copyright © 2013 František Kučera (frantovo.cz)
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     4
 *
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     5
 * This program is free software: you can redistribute it and/or modify
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     7
 * the Free Software Foundation, either version 3 of the License, or
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
 * (at your option) any later version.
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
 *
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    13
 * GNU General Public License for more details.
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    14
 *
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    16
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    17
 */
27
24aa5199bfd6 DatabaseConnection: just change package
František Kučera <franta-hg@frantovo.cz>
parents: 26
diff changeset
    18
package info.globalcode.sql.dk;
24aa5199bfd6 DatabaseConnection: just change package
František Kučera <franta-hg@frantovo.cz>
parents: 26
diff changeset
    19
29
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    20
import info.globalcode.sql.dk.batch.Batch;
146
4f4f515df807 BatchDecoder: basic decoder
František Kučera <franta-hg@frantovo.cz>
parents: 142
diff changeset
    21
import info.globalcode.sql.dk.batch.BatchException;
27
24aa5199bfd6 DatabaseConnection: just change package
František Kučera <franta-hg@frantovo.cz>
parents: 26
diff changeset
    22
import info.globalcode.sql.dk.configuration.DatabaseDefinition;
106
e9c3583580c8 use database properties
František Kučera <franta-hg@frantovo.cz>
parents: 91
diff changeset
    23
import info.globalcode.sql.dk.configuration.Properties;
107
8189a4a28cd8 database/formatter properties also as CLI options
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
    24
import info.globalcode.sql.dk.configuration.Property;
34
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 29
diff changeset
    25
import info.globalcode.sql.dk.formatting.ColumnsHeader;
29
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    26
import info.globalcode.sql.dk.formatting.Formatter;
28
57c44a6baedb DatabaseConnection: connect JDBC
František Kučera <franta-hg@frantovo.cz>
parents: 27
diff changeset
    27
import java.sql.Connection;
57c44a6baedb DatabaseConnection: connect JDBC
František Kučera <franta-hg@frantovo.cz>
parents: 27
diff changeset
    28
import java.sql.DriverManager;
29
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    29
import java.sql.PreparedStatement;
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    30
import java.sql.ResultSet;
28
57c44a6baedb DatabaseConnection: connect JDBC
František Kučera <franta-hg@frantovo.cz>
parents: 27
diff changeset
    31
import java.sql.SQLException;
86
6b0eb3b22eb8 log SQLWarnings
František Kučera <franta-hg@frantovo.cz>
parents: 65
diff changeset
    32
import java.sql.SQLWarning;
55
f5ed7c4efacc colorful logging
František Kučera <franta-hg@frantovo.cz>
parents: 42
diff changeset
    33
import java.util.logging.Level;
f5ed7c4efacc colorful logging
František Kučera <franta-hg@frantovo.cz>
parents: 42
diff changeset
    34
import java.util.logging.Logger;
26
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    35
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    36
/**
155
eb3676c6929b more JavaDoc
František Kučera <franta-hg@frantovo.cz>
parents: 146
diff changeset
    37
 * Represents connected database. Is derived from {@linkplain DatabaseDefinition}.
eb3676c6929b more JavaDoc
František Kučera <franta-hg@frantovo.cz>
parents: 146
diff changeset
    38
 * Wraps {@linkplain Connection}.
eb3676c6929b more JavaDoc
František Kučera <franta-hg@frantovo.cz>
parents: 146
diff changeset
    39
 *
eb3676c6929b more JavaDoc
František Kučera <franta-hg@frantovo.cz>
parents: 146
diff changeset
    40
 * Is responsible for executing {@linkplain SQLCommand} and passing results to the
eb3676c6929b more JavaDoc
František Kučera <franta-hg@frantovo.cz>
parents: 146
diff changeset
    41
 * {@linkplain Formatter}.
26
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    42
 *
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    43
 * @author Ing. František Kučera (frantovo.cz)
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    44
 */
42
6fdaa4db3943 DatabaseConnection implements AutoCloseable
František Kučera <franta-hg@frantovo.cz>
parents: 41
diff changeset
    45
public class DatabaseConnection implements AutoCloseable {
26
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    46
55
f5ed7c4efacc colorful logging
František Kučera <franta-hg@frantovo.cz>
parents: 42
diff changeset
    47
	private static final Logger log = Logger.getLogger(DatabaseConnection.class.getName());
108
d06d90b28217 DB credentials can be CLI options + log warning: insecure
František Kučera <franta-hg@frantovo.cz>
parents: 107
diff changeset
    48
	private static final String JDBC_PROPERTY_USER = "user";
d06d90b28217 DB credentials can be CLI options + log warning: insecure
František Kučera <franta-hg@frantovo.cz>
parents: 107
diff changeset
    49
	public static final String JDBC_PROPERTY_PASSWORD = "password";
26
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    50
	private DatabaseDefinition databaseDefinition;
28
57c44a6baedb DatabaseConnection: connect JDBC
František Kučera <franta-hg@frantovo.cz>
parents: 27
diff changeset
    51
	private Connection connection;
106
e9c3583580c8 use database properties
František Kučera <franta-hg@frantovo.cz>
parents: 91
diff changeset
    52
	private Properties properties;
26
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    53
106
e9c3583580c8 use database properties
František Kučera <franta-hg@frantovo.cz>
parents: 91
diff changeset
    54
	public DatabaseConnection(DatabaseDefinition databaseDefinition, Properties properties) throws SQLException {
26
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    55
		this.databaseDefinition = databaseDefinition;
106
e9c3583580c8 use database properties
František Kučera <franta-hg@frantovo.cz>
parents: 91
diff changeset
    56
		this.properties = properties;
28
57c44a6baedb DatabaseConnection: connect JDBC
František Kučera <franta-hg@frantovo.cz>
parents: 27
diff changeset
    57
108
d06d90b28217 DB credentials can be CLI options + log warning: insecure
František Kučera <franta-hg@frantovo.cz>
parents: 107
diff changeset
    58
		if (properties.hasProperty(JDBC_PROPERTY_PASSWORD)) {
d06d90b28217 DB credentials can be CLI options + log warning: insecure
František Kučera <franta-hg@frantovo.cz>
parents: 107
diff changeset
    59
			log.log(Level.WARNING, "Passing DB password as CLI parameter is insecure!");
d06d90b28217 DB credentials can be CLI options + log warning: insecure
František Kučera <franta-hg@frantovo.cz>
parents: 107
diff changeset
    60
		}
d06d90b28217 DB credentials can be CLI options + log warning: insecure
František Kučera <franta-hg@frantovo.cz>
parents: 107
diff changeset
    61
107
8189a4a28cd8 database/formatter properties also as CLI options
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
    62
		Properties credentials = new Properties();
108
d06d90b28217 DB credentials can be CLI options + log warning: insecure
František Kučera <franta-hg@frantovo.cz>
parents: 107
diff changeset
    63
		credentials.add(new Property(JDBC_PROPERTY_USER, databaseDefinition.getUserName()));
d06d90b28217 DB credentials can be CLI options + log warning: insecure
František Kučera <franta-hg@frantovo.cz>
parents: 107
diff changeset
    64
		credentials.add(new Property(JDBC_PROPERTY_PASSWORD, databaseDefinition.getPassword()));
107
8189a4a28cd8 database/formatter properties also as CLI options
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
    65
		credentials.setDefaults(databaseDefinition.getProperties());
8189a4a28cd8 database/formatter properties also as CLI options
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
    66
		properties.setDefaults(credentials);
106
e9c3583580c8 use database properties
František Kučera <franta-hg@frantovo.cz>
parents: 91
diff changeset
    67
		java.util.Properties javaProperties = properties.getJavaProperties();
e9c3583580c8 use database properties
František Kučera <franta-hg@frantovo.cz>
parents: 91
diff changeset
    68
e9c3583580c8 use database properties
František Kučera <franta-hg@frantovo.cz>
parents: 91
diff changeset
    69
		connection = DriverManager.getConnection(databaseDefinition.getUrl(), javaProperties);
26
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    70
	}
29
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    71
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    72
	public void executeQuery(SQLCommand sqlCommand, Formatter formatter) throws SQLException {
91
43e8d52091d5 Formatter: one more level: writeStartBatch() + writeEndBatch() which allows multiple databases on output
František Kučera <franta-hg@frantovo.cz>
parents: 86
diff changeset
    73
		formatter.writeStartBatch();
29
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    74
		formatter.writeStartDatabase(databaseDefinition);
142
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
    75
		formatter.writeStartStatement();
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
    76
		formatter.writeQuery(sqlCommand.getQuery());
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
    77
		formatter.writeParameters(sqlCommand.getParameters());
29
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    78
		processCommand(sqlCommand, formatter);
142
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
    79
		formatter.writeEndStatement();
29
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    80
		formatter.writeEndDatabase();
91
43e8d52091d5 Formatter: one more level: writeStartBatch() + writeEndBatch() which allows multiple databases on output
František Kučera <franta-hg@frantovo.cz>
parents: 86
diff changeset
    81
		formatter.writeEndBatch();
29
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    82
	}
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    83
146
4f4f515df807 BatchDecoder: basic decoder
František Kučera <franta-hg@frantovo.cz>
parents: 142
diff changeset
    84
	public void executeBatch(Batch batch, Formatter formatter) throws SQLException, BatchException {
91
43e8d52091d5 Formatter: one more level: writeStartBatch() + writeEndBatch() which allows multiple databases on output
František Kučera <franta-hg@frantovo.cz>
parents: 86
diff changeset
    85
		formatter.writeStartBatch();
29
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    86
		formatter.writeStartDatabase(databaseDefinition);
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    87
		while (batch.hasNext()) {
142
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
    88
			SQLCommand sqlCommand = batch.next();
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
    89
			formatter.writeStartStatement();
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
    90
			formatter.writeQuery(sqlCommand.getQuery());
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
    91
			formatter.writeParameters(sqlCommand.getParameters());
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
    92
			processCommand(sqlCommand, formatter);
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
    93
			formatter.writeEndStatement();
29
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    94
		}
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    95
		formatter.writeEndDatabase();
91
43e8d52091d5 Formatter: one more level: writeStartBatch() + writeEndBatch() which allows multiple databases on output
František Kučera <franta-hg@frantovo.cz>
parents: 86
diff changeset
    96
		formatter.writeEndBatch();
29
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    97
	}
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    98
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    99
	private void processCommand(SQLCommand sqlCommand, Formatter formatter) throws SQLException {
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
   100
		try (PreparedStatement ps = sqlCommand.prepareStatement(connection)) {
55
f5ed7c4efacc colorful logging
František Kučera <franta-hg@frantovo.cz>
parents: 42
diff changeset
   101
			log.log(Level.FINE, "Statement prepared");
29
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
   102
			sqlCommand.parametrize(ps);
35
b2ff3b2d58b2 accept SQL commands returning more ResultSets
František Kučera <franta-hg@frantovo.cz>
parents: 34
diff changeset
   103
b2ff3b2d58b2 accept SQL commands returning more ResultSets
František Kučera <franta-hg@frantovo.cz>
parents: 34
diff changeset
   104
			boolean isRS = ps.execute();
55
f5ed7c4efacc colorful logging
František Kučera <franta-hg@frantovo.cz>
parents: 42
diff changeset
   105
			log.log(Level.FINE, "Statement executed");
35
b2ff3b2d58b2 accept SQL commands returning more ResultSets
František Kučera <franta-hg@frantovo.cz>
parents: 34
diff changeset
   106
			if (isRS) {
b2ff3b2d58b2 accept SQL commands returning more ResultSets
František Kučera <franta-hg@frantovo.cz>
parents: 34
diff changeset
   107
				try (ResultSet rs = ps.getResultSet()) {
142
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
   108
					processResultSet(rs, formatter);
35
b2ff3b2d58b2 accept SQL commands returning more ResultSets
František Kučera <franta-hg@frantovo.cz>
parents: 34
diff changeset
   109
				}
b2ff3b2d58b2 accept SQL commands returning more ResultSets
František Kučera <franta-hg@frantovo.cz>
parents: 34
diff changeset
   110
			} else {
142
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
   111
				processUpdateResult(ps, formatter);
35
b2ff3b2d58b2 accept SQL commands returning more ResultSets
František Kučera <franta-hg@frantovo.cz>
parents: 34
diff changeset
   112
			}
86
6b0eb3b22eb8 log SQLWarnings
František Kučera <franta-hg@frantovo.cz>
parents: 65
diff changeset
   113
			logWarnings(ps);
35
b2ff3b2d58b2 accept SQL commands returning more ResultSets
František Kučera <franta-hg@frantovo.cz>
parents: 34
diff changeset
   114
b2ff3b2d58b2 accept SQL commands returning more ResultSets
František Kučera <franta-hg@frantovo.cz>
parents: 34
diff changeset
   115
			while (ps.getMoreResults() || ps.getUpdateCount() > -1) {
37
9e6f8e5d5f98 support SQL commands returning more ResultSets + remove COMMAND_TYPE (type is now derived from result returned from SQL – it is not needed to specify the type on CLI)
František Kučera <franta-hg@frantovo.cz>
parents: 35
diff changeset
   116
				ResultSet rs = ps.getResultSet();
9e6f8e5d5f98 support SQL commands returning more ResultSets + remove COMMAND_TYPE (type is now derived from result returned from SQL – it is not needed to specify the type on CLI)
František Kučera <franta-hg@frantovo.cz>
parents: 35
diff changeset
   117
				if (rs == null) {
142
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
   118
					processUpdateResult(ps, formatter);
37
9e6f8e5d5f98 support SQL commands returning more ResultSets + remove COMMAND_TYPE (type is now derived from result returned from SQL – it is not needed to specify the type on CLI)
František Kučera <franta-hg@frantovo.cz>
parents: 35
diff changeset
   119
				} else {
142
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
   120
					processResultSet(rs, formatter);
37
9e6f8e5d5f98 support SQL commands returning more ResultSets + remove COMMAND_TYPE (type is now derived from result returned from SQL – it is not needed to specify the type on CLI)
František Kučera <franta-hg@frantovo.cz>
parents: 35
diff changeset
   121
					rs.close();
9e6f8e5d5f98 support SQL commands returning more ResultSets + remove COMMAND_TYPE (type is now derived from result returned from SQL – it is not needed to specify the type on CLI)
František Kučera <franta-hg@frantovo.cz>
parents: 35
diff changeset
   122
				}
86
6b0eb3b22eb8 log SQLWarnings
František Kučera <franta-hg@frantovo.cz>
parents: 65
diff changeset
   123
				logWarnings(ps);
29
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
   124
			}
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
   125
		}
37
9e6f8e5d5f98 support SQL commands returning more ResultSets + remove COMMAND_TYPE (type is now derived from result returned from SQL – it is not needed to specify the type on CLI)
František Kučera <franta-hg@frantovo.cz>
parents: 35
diff changeset
   126
	}
9e6f8e5d5f98 support SQL commands returning more ResultSets + remove COMMAND_TYPE (type is now derived from result returned from SQL – it is not needed to specify the type on CLI)
František Kučera <franta-hg@frantovo.cz>
parents: 35
diff changeset
   127
142
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
   128
	private void processUpdateResult(PreparedStatement ps, Formatter formatter) throws SQLException {
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
   129
		formatter.writeUpdatesResult(ps.getUpdateCount());
37
9e6f8e5d5f98 support SQL commands returning more ResultSets + remove COMMAND_TYPE (type is now derived from result returned from SQL – it is not needed to specify the type on CLI)
František Kučera <franta-hg@frantovo.cz>
parents: 35
diff changeset
   130
	}
9e6f8e5d5f98 support SQL commands returning more ResultSets + remove COMMAND_TYPE (type is now derived from result returned from SQL – it is not needed to specify the type on CLI)
František Kučera <franta-hg@frantovo.cz>
parents: 35
diff changeset
   131
142
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
   132
	private void processResultSet(ResultSet rs, Formatter formatter) throws SQLException {
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
   133
		formatter.writeStartResultSet(new ColumnsHeader(rs.getMetaData()));
37
9e6f8e5d5f98 support SQL commands returning more ResultSets + remove COMMAND_TYPE (type is now derived from result returned from SQL – it is not needed to specify the type on CLI)
František Kučera <franta-hg@frantovo.cz>
parents: 35
diff changeset
   134
34
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 29
diff changeset
   135
		int columnCount = rs.getMetaData().getColumnCount();
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 29
diff changeset
   136
29
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
   137
		while (rs.next()) {
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
   138
			formatter.writeStartRow();
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
   139
34
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 29
diff changeset
   140
			for (int i = 1; i <= columnCount; i++) {
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 29
diff changeset
   141
				formatter.writeColumnValue(rs.getObject(i));
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 29
diff changeset
   142
			}
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 29
diff changeset
   143
29
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
   144
			formatter.writeEndRow();
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
   145
		}
34
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 29
diff changeset
   146
142
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 108
diff changeset
   147
		formatter.writeEndResultSet();
29
d66858b4b563 more configuration, more JAXB, more formatters
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
   148
	}
42
6fdaa4db3943 DatabaseConnection implements AutoCloseable
František Kučera <franta-hg@frantovo.cz>
parents: 41
diff changeset
   149
86
6b0eb3b22eb8 log SQLWarnings
František Kučera <franta-hg@frantovo.cz>
parents: 65
diff changeset
   150
	private void logWarnings(PreparedStatement ps) throws SQLException {
6b0eb3b22eb8 log SQLWarnings
František Kučera <franta-hg@frantovo.cz>
parents: 65
diff changeset
   151
		SQLWarning w = ps.getWarnings();
6b0eb3b22eb8 log SQLWarnings
František Kučera <franta-hg@frantovo.cz>
parents: 65
diff changeset
   152
		while (w != null) {
6b0eb3b22eb8 log SQLWarnings
František Kučera <franta-hg@frantovo.cz>
parents: 65
diff changeset
   153
			log.log(Level.WARNING, "SQL: {0}", w.getLocalizedMessage());
6b0eb3b22eb8 log SQLWarnings
František Kučera <franta-hg@frantovo.cz>
parents: 65
diff changeset
   154
			w = w.getNextWarning();
6b0eb3b22eb8 log SQLWarnings
František Kučera <franta-hg@frantovo.cz>
parents: 65
diff changeset
   155
		}
6b0eb3b22eb8 log SQLWarnings
František Kučera <franta-hg@frantovo.cz>
parents: 65
diff changeset
   156
		ps.clearWarnings();
6b0eb3b22eb8 log SQLWarnings
František Kučera <franta-hg@frantovo.cz>
parents: 65
diff changeset
   157
	}
6b0eb3b22eb8 log SQLWarnings
František Kučera <franta-hg@frantovo.cz>
parents: 65
diff changeset
   158
65
f05be87239ad option --test-connection – tests connection to given database
František Kučera <franta-hg@frantovo.cz>
parents: 55
diff changeset
   159
	/**
f05be87239ad option --test-connection – tests connection to given database
František Kučera <franta-hg@frantovo.cz>
parents: 55
diff changeset
   160
	 * Tests if this connection is live.
f05be87239ad option --test-connection – tests connection to given database
František Kučera <franta-hg@frantovo.cz>
parents: 55
diff changeset
   161
	 *
f05be87239ad option --test-connection – tests connection to given database
František Kučera <franta-hg@frantovo.cz>
parents: 55
diff changeset
   162
	 * @return true if test was successful
f05be87239ad option --test-connection – tests connection to given database
František Kučera <franta-hg@frantovo.cz>
parents: 55
diff changeset
   163
	 * @throws SQLException if test fails
f05be87239ad option --test-connection – tests connection to given database
František Kučera <franta-hg@frantovo.cz>
parents: 55
diff changeset
   164
	 */
f05be87239ad option --test-connection – tests connection to given database
František Kučera <franta-hg@frantovo.cz>
parents: 55
diff changeset
   165
	public boolean test() throws SQLException {
f05be87239ad option --test-connection – tests connection to given database
František Kučera <franta-hg@frantovo.cz>
parents: 55
diff changeset
   166
		connection.getAutoCommit();
f05be87239ad option --test-connection – tests connection to given database
František Kučera <franta-hg@frantovo.cz>
parents: 55
diff changeset
   167
		return true;
f05be87239ad option --test-connection – tests connection to given database
František Kučera <franta-hg@frantovo.cz>
parents: 55
diff changeset
   168
	}
f05be87239ad option --test-connection – tests connection to given database
František Kučera <franta-hg@frantovo.cz>
parents: 55
diff changeset
   169
42
6fdaa4db3943 DatabaseConnection implements AutoCloseable
František Kučera <franta-hg@frantovo.cz>
parents: 41
diff changeset
   170
	@Override
6fdaa4db3943 DatabaseConnection implements AutoCloseable
František Kučera <franta-hg@frantovo.cz>
parents: 41
diff changeset
   171
	public void close() throws SQLException {
6fdaa4db3943 DatabaseConnection implements AutoCloseable
František Kučera <franta-hg@frantovo.cz>
parents: 41
diff changeset
   172
		connection.close();
6fdaa4db3943 DatabaseConnection implements AutoCloseable
František Kučera <franta-hg@frantovo.cz>
parents: 41
diff changeset
   173
	}
26
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   174
}