File Removed
[csql.git] / test / jdbc / Gateway / test049.ksh
blobed2d5e11925044ecdd1b268e591c087d164b4b91
1 #!/bin/sh
2 # Donot Start CSQL Server
3 # Connect through the csql:gateway URL create Statement and call execute to create a table. it should fail
5 # GwTest9.java
7 TESTFILE=${PWD}/jdbc/Gateway/GwTest1.java
8 REL_PATH=.
9 if [ -s "$TESTFILE" ]
10 then
11 REL_PATH=`pwd`/jdbc/Gateway
13 export CLASSPATH=$CLASSPATH:${REL_PATH}
14 export CSQL_CONFIG_FILE=$REL_PATH/csql.conf
15 java GwTest9
16 if [ $? -ne 0 ]
17 then
18 exit 1;
22 exit 0;