lock manager and chunk allocation mutex modificationsw
[csql.git] / test / jdbc / Gateway / ConnTest03.java
blob3a7803780eb13a79982aea7ac543564e6372080b
1 //To connect with connectstring "jdbc:gateway" and give empty properties object. It should fail.
3 import java.sql.*;
4 public class ConnTest03
6 public static void main(String[] args)
8 try
10 Class.forName("csql.jdbc.JdbcSqlDriver");
11 Connection con = DriverManager.getConnection("jdbc:gateway");
12 if (con != null) System.exit(1);
13 }catch(Exception e) {
14 System.out.println("Exception in Test: "+e.getMessage());
15 e.getStackTrace();
16 System.exit(0);