repo.or.cz
/
csql.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
File Removed
[csql.git]
/
test
/
jdbc
/
Statement
/
test009.ksh
blob
2afae76a7e9c6b7757c4678adb8d15d1d804846b
1
#!/bin/sh
2
TESTFILE
=
${PWD}
/
jdbc
/
Statement
/
StmtTest9.java
3
REL_PATH
=
.
4
if
[
-s
"
$TESTFILE
"
]
5
then
6
REL_PATH
=
`pwd`
/
jdbc
/
Statement
7
fi
8
export
CLASSPATH
=
$CLASSPATH
:
${REL_PATH}
9
java StmtTest9
10
if
[
$?
-ne
0
]
11
then
12
exit
1
;
13
fi
14
exit
0
;