@@ -237,9 +238,11 @@ public class JDBCConnection implements DBConnection {
/** The translator this connection must use to translate ADQL into SQL. It is also used to get information about the case sensitivity of all types of identifier (schema, table, column). */
protectedfinalJDBCTranslatortranslator;
protectedfinalQueryExecutorqueryExecutor;
/** Object to use if any message needs to be logged. <i>note: this logger may be NULL. If NULL, messages will never be printed.</i> */
protectedfinalTAPLoglogger;
/* JDBC URL MANAGEMENT */
/** JDBC prefix of any database URL (for instance: jdbc:postgresql://127.0.0.1/myDB or jdbc:postgresql:myDB). */
...
...
@@ -341,8 +344,8 @@ public class JDBCConnection implements DBConnection {
*
* @throws DBException If the driver can not be found or if the connection can not merely be created (usually because DB parameters are wrong).
@@ -353,7 +356,7 @@ public class JDBCConnection implements DBConnection {
* @param connID ID of this connection. <i>note: may be NULL ; but in this case, logs concerning this connection will be more difficult to localize.</i>
* @param logger Logger to use in case of need. <i>note: may be NULL ; in this case, error will never be logged, but sometimes DBException may be raised.</i>