comparison src/main/java/org/monetdb/jdbc/MonetDriver.java.in @ 768:a80c21fe7bb2

Removed deprecated nl.cwi.monetdb.*.* classes and package. Those classes were marked deprecated on 12 Nov 2020 from release 3.0 (released on 17 Feb 2021) onwards. It includes: nl.cwi.monetdb.client.JdbcClient.class nl.cwi.monetdb.jdbc.MonetDriver.class nl.cwi.monetdb.jdbc.types.INET.class nl.cwi.monetdb.jdbc.types.URL.class nl.cwi.monetdb.mcl.net.MapiSocket.class These classes are now removed permanently. Use the org.monetdb.* equivalents instead.
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 06 Jul 2023 15:35:04 +0200 (22 months ago)
parents e1389c0ffb7c
children f261fe3c7fe4
comparison
equal deleted inserted replaced
767:1547843b3a9b 768:a80c21fe7bb2
38 *</pre> 38 *</pre>
39 * 39 *
40 * @author Fabian Groffen 40 * @author Fabian Groffen
41 * @version @JDBC_MAJOR@.@JDBC_MINOR@ (@JDBC_VER_SUFFIX@) 41 * @version @JDBC_MAJOR@.@JDBC_MINOR@ (@JDBC_VER_SUFFIX@)
42 */ 42 */
43 public class MonetDriver implements Driver { /* cannot (yet) be final as nl.cwi.monetdb.jdbc.MonetDriver extends this class */ 43 public final class MonetDriver implements Driver {
44 // the url kind will be jdbc:monetdb://<host>[:<port>]/<database> 44 // the url kind will be jdbc:monetdb://<host>[:<port>]/<database>
45 // Chapter 9.2.1 from Sun JDBC 3.0 specification 45 // Chapter 9.2.1 from Sun JDBC 3.0 specification
46 /** The prefix of a MonetDB url */ 46 /** The prefix of a MonetDB url */
47 static final String MONETURL = "jdbc:monetdb://"; 47 static final String MONETURL = "jdbc:monetdb://";
48 48