adding test scripts
[csql.git] / test / sqlnetwork / Jdbcnetwork / test019.ksh
blobc6d9358c95d99104db10102f73e9f8b9b7590a26
1 #!/bin/ksh
2 # Close the connection and then call preparedStatement(). 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 ConnTest19
11 if [ $? -ne 0 ]
12 then
13 exit 1;
15 exit 0;