adding test scripts
[csql.git] / test / sqlnetwork / Jdbcnetwork / test005.ksh
blob554647b4b5ce53b0f273e9e6b7d86ae79320c254
1 #!/bin/ksh
2 #Connect with connectstring "odbc:csql://localhost:5678/csql" and give correct "user" and "password" in properties object. 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 ConnTest5
11 if [ $? -ne 0 ]
12 then
13 exit 1;
15 exit 0;