diff tests/Test_Csavepoints.java @ 27:04fbf3655452

Disable Class.forName("nl.cwi.monetdb.jdbc.MonetDriver"); code as it is not needed anymore for self registering JDBC drivers
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 20 Oct 2016 19:13:11 +0200 (2016-10-20)
parents a5a898f6886c
children b9b35ca2eec2
line wrap: on
line diff
--- a/tests/Test_Csavepoints.java
+++ b/tests/Test_Csavepoints.java
@@ -10,7 +10,7 @@ import java.sql.*;
 
 public class Test_Csavepoints {
 	public static void main(String[] args) throws Exception {
-		Class.forName("nl.cwi.monetdb.jdbc.MonetDriver");
+		// Class.forName("nl.cwi.monetdb.jdbc.MonetDriver");	// not needed anymore for self registering JDBC drivers
 		Connection con = DriverManager.getConnection(args[0]);
 		Statement stmt = con.createStatement();
 		ResultSet rs = null;