comparison src/main/java/org/monetdb/client/JdbcClient.java @ 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 7200f7942b16
children 1b9fe515f574
comparison
equal deleted inserted replaced
767:1547843b3a9b 768:a80c21fe7bb2
46 * it demonstrates the power of the JDBC interface since it built on top 46 * it demonstrates the power of the JDBC interface since it built on top
47 * of JDBC only. 47 * of JDBC only.
48 * 48 *
49 * @author Fabian Groffen 49 * @author Fabian Groffen
50 * @author Martin van Dinther 50 * @author Martin van Dinther
51 * @version 1.7 51 * @version 1.8
52 */ 52 */
53 53
54 public class JdbcClient { /* cannot (yet) be final as nl.cwi.monetdb.client.JdbcClient extends this class */ 54 public final class JdbcClient {
55 55
56 private static Connection con; 56 private static Connection con;
57 private static DatabaseMetaData dbmd; 57 private static DatabaseMetaData dbmd;
58 private static Statement stmt; 58 private static Statement stmt;
59 private static BufferedReader in; 59 private static BufferedReader in;