lock manager and chunk allocation mutex modificationsw
[csql.git] / test / jdbc / Gateway / test038.ksh
blobb04d2badb2bfa421ebc687e99c930be48c9a2793
1 #!/bin/ksh
2 #JDBC GATEWAY CACHE
3 TESTFILE=${PWD}/jdbc/Gateway/ConnTest01.java
4 REL_PATH=.
5 if [ -s "$TESTFILE" ]
6 then
7 REL_PATH=`pwd`/jdbc/Gateway
8 fi
9 export CLASSPATH=$CLASSPATH:${REL_PATH}
10 rm -f /tmp/csql.conf
11 cp $CSQL_CONFIG_FILE /tmp/csql.conf
12 export CSQL_CONFIG_FILE=/tmp/csql.conf
13 echo "CACHE_TABLE=true" >>$CSQL_CONFIG_FILE
14 echo DSN=$DSN >>$CSQL_CONFIG_FILE
15 DS="$DSN $DBUSER $PASSWORD"
16 rm -f /tmp/csql/csqlds.conf
17 touch /tmp/csql/csqlds.conf
18 $CSQL_INSTALL_ROOT/bin/csqlds -U $DBUSER -P $PASSWORD -D $DSN -N $TDB -a
19 if [ $? -ne 0 ]
20 then
21 exit 1;
24 if [ "$DSN" = "oracle" ]
25 then
26 echo "CREATE TABLE t1 (f1 integer, f2 smallint, f4 number(15), f5 float, f6 char(10), f7 date,f8 date, f9 timestamp);" >${REL_PATH}/t1create.sql
27 else
28 echo "CREATE TABLE t1 (f1 integer, f2 smallint, f4 bigint, f5 float, f6 char(10), f7 date, f8 time, f9 timestamp);" >${REL_PATH}/t1create.sql
30 isql $DS < ${REL_PATH}/t1create.sql >/dev/null 2>&1
31 if [ $? -ne 0 ]
32 then
33 rm -f ${REL_PATH}/t1create.sql
34 exit 1;
36 echo "drop table t1;">${REL_PATH}/dp.sql
37 $CSQL_INSTALL_ROOT/bin/cachetable -t t1 >/dev/null 2>&1
38 if [ $? -ne 0 ]
39 then
40 rm -f ${REL_PATH}/t1create.sql
41 isql $DS < ${REL_PATH}/dp.sql >/dev/null 2>&1
42 rm -f ${REL_PATH}/dp.sql
43 exit 2;
45 java GwStmt8
46 if [ $? -ne 0 ]
47 then
48 rm -f ${REL_PATH}/t1create.sql
49 isql $DS < ${REL_PATH}/dp.sql >/dev/null 2>&1
50 rm -f ${REL_PATH}/dp.sql
51 exit 3;
54 $CSQL_INSTALL_ROOT/bin/cachetable -t t1 -u >/dev/null 2>&1
55 if [ $? -ne 0 ]
56 then
57 rm -f ${REL_PATH}/t1create.sql
58 isql $DS < ${REL_PATH}/dp.sql >/dev/null 2>&1
59 rm -f ${REL_PATH}/dp.sql
60 exit 4;
62 isql $DS < ${REL_PATH}/dp.sql >/dev/null 2>&1
63 $CSQL_INSTALL_ROOT/bin/csql -s ${REL_PATH}/dp.sql >/dev/null 2>&1
64 rm -f ${REL_PATH}/dp.sql
65 rm -f ${REL_PATH}/t1create.sql
66 exit 0;