Mercurial > hg > monetdb-java
diff src/main/java/org/monetdb/jdbc/MonetStatement.java @ 451:3dfcd06fd8ba
Correcting typos in documentation text. Also improved the readability of the generated javadoc documents.
author | Martin van Dinther <martin.van.dinther@monetdbsolutions.com> |
---|---|
date | Thu, 04 Mar 2021 18:57:51 +0100 (2021-03-04) |
parents | 1e278695fe54 |
children | 849af4b76b28 |
line wrap: on
line diff
--- a/src/main/java/org/monetdb/jdbc/MonetStatement.java +++ b/src/main/java/org/monetdb/jdbc/MonetStatement.java @@ -20,16 +20,17 @@ import java.util.ArrayList; import java.util.concurrent.locks.ReentrantLock; /** - * A Statement suitable for the MonetDB database. + *<pre> + * A {@link Statement} suitable for the MonetDB database. * * The object used for executing a static SQL statement and returning - * the results it produces. + * the result(s) it produces. * * By default, only one {@link ResultSet} object per Statement object can be * open at the same time. Therefore, if the reading of one ResultSet * object is interleaved with the reading of another, each must have - * been generated by different {@link Statement} objects. All execution methods - * in the Statement interface implicitly close a Statement's current + * been generated by different {@link Statement} objects. All execution + * methods in the Statement interface implicitly close a Statement's current * ResultSet object if an open one exists. * * The current state of this Statement is that it only implements the @@ -38,6 +39,7 @@ import java.util.concurrent.locks.Reentr * Commit and rollback are implemented, as is the autoCommit mechanism * which relies on server side auto commit. * Multi-result queries are supported using the getMoreResults() method. + *</pre> * * @author Fabian Groffen * @author Martin van Dinther