Mercurial > hg > monetdb-java
comparison tests/Bug_PrepStmtSetString_6382.java @ 391:f523727db392
Moved Java classes from packages starting with nl.cwi.monetdb.* to package org.monetdb.*
This naming complies to the Java Package Naming convention as MonetDB's main website is www.monetdb.org.
author | Martin van Dinther <martin.van.dinther@monetdbsolutions.com> |
---|---|
date | Thu, 12 Nov 2020 22:02:01 +0100 (2020-11-12) |
parents | 54137aeb1f92 |
children | bf9f6b6ecf40 |
comparison
equal
deleted
inserted
replaced
390:6199e0be3c6e | 391:f523727db392 |
---|---|
5 * | 5 * |
6 * Copyright 1997 - July 2008 CWI, August 2008 - 2020 MonetDB B.V. | 6 * Copyright 1997 - July 2008 CWI, August 2008 - 2020 MonetDB B.V. |
7 */ | 7 */ |
8 | 8 |
9 import java.sql.*; | 9 import java.sql.*; |
10 import nl.cwi.monetdb.jdbc.types.INET; | 10 import org.monetdb.jdbc.types.INET; |
11 import nl.cwi.monetdb.jdbc.types.URL; | 11 import org.monetdb.jdbc.types.URL; |
12 | 12 |
13 public class Bug_PrepStmtSetString_6382 { | 13 public class Bug_PrepStmtSetString_6382 { |
14 public static void main(String[] args) throws Exception { | 14 public static void main(String[] args) throws Exception { |
15 // Class.forName("nl.cwi.monetdb.jdbc.MonetDriver"); // not needed anymore for self registering JDBC drivers | |
16 Connection con = null; | 15 Connection con = null; |
17 Statement stmt = null; | 16 Statement stmt = null; |
18 PreparedStatement pstmt = null; | 17 PreparedStatement pstmt = null; |
19 ResultSet rs = null; | 18 ResultSet rs = null; |
20 final String tableName = "PrepStmtSetString_6382"; | 19 final String tableName = "PrepStmtSetString_6382"; |