comparison src/main/java/org/monetdb/jdbc/MonetConnection.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 84f6d86ed590
children 0e21097f438b
comparison
equal deleted inserted replaced
450:b9f82064fe0c 451:3dfcd06fd8ba
40 import org.monetdb.mcl.parser.HeaderLineParser; 40 import org.monetdb.mcl.parser.HeaderLineParser;
41 import org.monetdb.mcl.parser.MCLParseException; 41 import org.monetdb.mcl.parser.MCLParseException;
42 import org.monetdb.mcl.parser.StartOfHeaderParser; 42 import org.monetdb.mcl.parser.StartOfHeaderParser;
43 43
44 /** 44 /**
45 *<pre>
45 * A {@link Connection} suitable for the MonetDB database. 46 * A {@link Connection} suitable for the MonetDB database.
46 * 47 *
47 * This connection represents a connection (session) to a MonetDB 48 * This connection represents a connection (session) to a MonetDB
48 * database. SQL statements are executed and results are returned within 49 * database. SQL statements are executed and results are returned within
49 * the context of a connection. This Connection object holds a physical 50 * the context of a connection. This Connection object holds a physical
58 * means that it automatically commits changes after executing each 59 * means that it automatically commits changes after executing each
59 * statement. If auto-commit mode has been disabled, the method commit 60 * statement. If auto-commit mode has been disabled, the method commit
60 * must be called explicitly in order to commit changes; otherwise, 61 * must be called explicitly in order to commit changes; otherwise,
61 * database changes will not be saved. 62 * database changes will not be saved.
62 * 63 *
63 * The current state of this connection is that it nearly implements the 64 * The current state of this class is that it nearly implements the
64 * whole Connection interface. 65 * whole Connection interface.
66 *</pre>
65 * 67 *
66 * @author Fabian Groffen 68 * @author Fabian Groffen
67 * @author Martin van Dinther 69 * @author Martin van Dinther
68 * @version 1.6 70 * @version 1.6
69 */ 71 */