two IN clause in sql statement does not clear the value clause before
[csql.git] / test / sqlnetwork / Jdbcnetwork / ConnTest8.java
blobd100dbbf07d47aeb93d04b6ba795ef97420efc67
1 //Connect with "jdbc:csql:5678:localhost:csql" and give correct "user" and "password" in properties object. It should fail
2 import java.sql.*;
3 public class ConnTest8
5 public static void main(String[] args)
7 try
9 Class.forName("csql.jdbc.JdbcSqlDriver");
10 Connection con = DriverManager.getConnection("jdbc:csql:5678:localhost:csql", "root", "manager");
11 if (con != null) {con.close(); System.exit(1);}
12 }catch(Exception e) {
13 System.out.println("Exception in Test: "+e.getMessage());
14 e.getStackTrace();
15 System.exit(0);