File Removed
[csql.git] / test / sqlnetwork / Jdbcnetwork / test013.ksh
blob9350ed5a95d958cc49df4e86ea5bbdf49c840d04
1 #!/bin/sh
2 #Connect with "jdbc:csql:localhost:5678" and give correct "user" and "password" in properties object. It should fail
4 TESTFILE=${PWD}/jdbc/Connection/ConnTest1.java
5 REL_PATH=.
6 if [ -s "$TESTFILE" ]
7 then
8 REL_PATH=`pwd`/jdbc/Connection
9 fi
10 export CLASSPATH=$CLASSPATH:${REL_PATH}
11 java ConnTest13
12 if [ $? -ne 0 ]
13 then
14 exit 1;
16 exit 0;