Mercurial > hg > monetdb-java
changeset 562:c640075da7c9 onclient
only comment improvements
author | Martin van Dinther <martin.van.dinther@monetdbsolutions.com> |
---|---|
date | Wed, 22 Sep 2021 18:09:18 +0200 (2021-09-22) |
parents | 028d4f388bae |
children | fa2493d924c8 |
files | src/main/java/org/monetdb/jdbc/MonetConnection.java |
diffstat | 1 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/src/main/java/org/monetdb/jdbc/MonetConnection.java +++ b/src/main/java/org/monetdb/jdbc/MonetConnection.java @@ -1675,6 +1675,9 @@ public class MonetConnection //== end methods of interface java.sql.Connection + + //== internal helper methods which do not belong to the JDBC interface + /** * Registers a {@link UploadHandler} to support for example COPY ON CLIENT * @@ -1706,9 +1709,6 @@ public class MonetConnection return downloadHandler; } - - //== internal helper methods which do not belong to the JDBC interface - /** * Local helper method to test whether the Connection object is closed * When closed it throws an SQLException @@ -2153,7 +2153,7 @@ public class MonetConnection * consistent or sufficient. */ /* MvD: disabled not used/needed code - public abstract void complete() throws SQLException; + void complete() throws SQLException; */ /** @@ -3337,7 +3337,7 @@ public class MonetConnection * Send an error message to the server * * The server will generally let the currently executing statement fail - * with this error message. The connection will remain usable. + * with this error message. The connection will remain usable. * * This method can only be sent if no data has been sent to the server * yet. After data has been sent, you can still throw an @@ -3397,7 +3397,7 @@ public class MonetConnection /** * Read from the given input stream and write it to the server. - * + * * For text mode uploads, the data MUST be validly UTF-8 encoded. */ public void uploadFrom(InputStream inputStream) throws IOException { @@ -3478,7 +3478,7 @@ public class MonetConnection * This method can only be sent if no data has been received from the server * yet. After data has been received, you can still throw an * {@link IOException} but this will terminate the connection. - * + * * Note: as of MonetDB version Jul2021 the server always terminates the connection * when this error is used. This will probably change in the future. */ @@ -3491,7 +3491,7 @@ public class MonetConnection /** * Get an {@link InputStream} to read data from. - * + * * Textual data is UTF-8 encoded. */ public InputStream getStream() throws IOException {