lock manager and chunk allocation mutex modificationsw
[csql.git] / test / jdbc / network / Statement / StmtTest4.java
blob65a12b7329e98d045ba994155da21ffd7962f659
1 //close() and then again call close(). it should no error
2 import java.sql.*;
3 public class StmtTest4
5 public static void main(String[] args)
7 try
9 Class.forName("csql.jdbc.JdbcSqlDriver");
10 Connection con = DriverManager.getConnection("jdbc:csql://localhost:5678", "root", "manager");
11 con.close();
12 con.close();
13 }catch(Exception e) {
14 System.out.println("Exception in Test: "+e);
15 e.printStackTrace();
16 System.exit(1);