adding test scripts
[csql.git] / test / jdbc / network / Gateway / test042.ksh
blobb38b54447b5a444a58d27ac452faf893e91bf188
1 #!/bin/ksh
2 #Donot start the server .Connect with connectstring "jdbc:gateway" and null for username and password. It should fail
3 # GwTest2.java
5 TESTFILE=${PWD}/jdbc/network/Gateway/GwTest1.java
6 REL_PATH=.
7 if [ -s "$TESTFILE" ]
8 then
9 REL_PATH=`pwd`/jdbc/network/Gateway
11 export CLASSPATH=$CLASSPATH:${REL_PATH}
12 rm -f /tmp/csql.conf
13 cp $CSQL_CONFIG_FILE /tmp/csql.conf
14 export CSQL_CONFIG_FILE=/tmp/csql.conf
15 #export CSQL_CONFIG_FILE=$REL_PATH/csql.conf
16 echo "CACHE_TABLE=true" >>$CSQL_CONFIG_FILE
17 echo DSN=$DSN >>$CSQL_CONFIG_FILE
18 DS="$DSN $DBUSER $PASSWORD"
19 rm -f /tmp/csql/csqlds.conf
20 touch /tmp/csql/csqlds.conf
21 $CSQL_INSTALL_ROOT/bin/csqlds -U $DBUSER -P $PASSWORD -D $DSN -N $TDB -a
22 if [ $? -ne 0 ]
23 then
24 exit 1;
27 java GwTest2
28 if [ $? -ne 0 ]
29 then
30 exit 1;
34 exit 0;