1 //Connect with "jdbc:csql://local/host:5678/csql" and give correct "user" and "password" in properties object. It should fail
3 public class ConnTest12
5 public static void main(String
[] args
)
9 Class
.forName("csql.jdbc.JdbcSqlDriver");
10 Connection con
= DriverManager
.getConnection("jdbc:csql://local/host:5678/csql", "root", "manager");
11 if (con
!= null) System
.exit (1);
13 System
.out
.println("Exception in Test: "+e
.getMessage());