adding test scripts
[csql.git] / test / sqlnetwork / Jdbcnetwork / ConnTest7.java
blob71e004e0aa0bba5798777609bf3c9d20f3ae77bd
1 //Connect with connectstring "jdbc:csql://localhost:5678/csql" and give correct "user" and incorrect "password" in properties object. It should fail.
2 import java.sql.*;
3 public class ConnTest7
5 public static void main(String[] args)
7 try
9 Class.forName("csql.jdbc.JdbcSqlDriver");
10 Connection con = DriverManager.getConnection("jdbc:csql://localhost:5678/csql", "root", "wrongpasswd");
11 if (con != null) System.exit(1);
12 }catch(Exception e) {
13 System.out.println("Exception in Test: "+e.getMessage());
14 e.getStackTrace();
15 System.exit(0);