Mercurial > hg > monetdb-java
changeset 857:8dc5047e9d04
Move non JDBC API method to the end where the other add methods are placed.
author | Martin van Dinther <martin.van.dinther@monetdbsolutions.com> |
---|---|
date | Thu, 01 Feb 2024 13:56:26 +0100 (14 months ago) |
parents | c6946ee9f5ce |
children | d74e850e2991 |
files | src/main/java/org/monetdb/jdbc/MonetConnection.java |
diffstat | 1 files changed, 15 insertions(+), 15 deletions(-) [+] |
line wrap: on
line diff
--- a/src/main/java/org/monetdb/jdbc/MonetConnection.java +++ b/src/main/java/org/monetdb/jdbc/MonetConnection.java @@ -1244,20 +1244,6 @@ public class MonetConnection } /** - * Construct a Properties object holding all connection parameters such - * as host, port, TLS configuration, autocommit, etc. - * Passing this to {@link DriverManager.getConnection()} together - * with the URL "jdbc:monetdb:" will create a new connection identical to - * the current one. - * - * @return - */ - - public Properties getConnectionProperties() { - return target.getProperties(); - } - - /** * Returns the value of the client info property specified by name. * This method may return null if the specified client info property * has not been set and does not have a default value. @@ -1525,7 +1511,21 @@ public class MonetConnection //== end methods of interface java.sql.Connection - //== internal helper methods which do not belong to the JDBC interface + //== internal helper methods which do NOT belong to the JDBC interface + + /** + * Construct a Properties object holding all connection parameters such + * as host, port, TLS configuration, autocommit, etc. + * Passing this to {@link DriverManager.getConnection()} together + * with the URL "jdbc:monetdb:" will create a new connection identical to + * the current one. + * + * @return a Properties object + */ + public Properties getConnectionProperties() { + return target.getProperties(); + } + /** Handler for COPY ... INTO ... FROM 'data-file-name' ON CLIENT requests */ private UploadHandler uploadHandler;