diff tests/Test_Wrapper.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
line wrap: on
line diff
--- a/tests/Test_Wrapper.java
+++ b/tests/Test_Wrapper.java
@@ -10,13 +10,12 @@ import java.sql.*;
 
 public class Test_Wrapper {
 	public static void main(String[] args) throws Exception {
-		// Class.forName("nl.cwi.monetdb.jdbc.MonetDriver");	// not needed anymore for self registering JDBC drivers
 		final Connection con = DriverManager.getConnection(args[0]);
 		System.out.println("Connected. Auto commit is: " + con.getAutoCommit());
 
 		try {
 			final String jdbc_pkg = "java.sql.";
-			final String monetdb_jdbc_pkg = "nl.cwi.monetdb.jdbc.";
+			final String monetdb_jdbc_pkg = "org.monetdb.jdbc.";
 
 			checkIsWrapperFor("Connection", con, jdbc_pkg, "Connection");
 			checkIsWrapperFor("Connection", con, monetdb_jdbc_pkg, "MonetConnection");