File Removed
[csql.git] / test / sqlnetwork / Jdbcnetwork / test002.ksh
blobe8382c5bf570cbf784908edb6357cc59261a65b7
1 #!/bin/sh
2 #Connect with connect string "jdbc:csql:lllocalhost:5678/csql" and null for username and password. It should fail.
3 TESTFILE=${PWD}/jdbc/Connection/ConnTest1.java
4 REL_PATH=.
5 if [ -s "$TESTFILE" ]
6 then
7 REL_PATH=`pwd`/jdbc/Connection
8 fi
9 export CLASSPATH=$CLASSPATH:${REL_PATH}
10 java ConnTest2
11 if [ $? -ne 0 ]
12 then
13 exit 1;
15 exit 0;