Sign in
third-party-mirror
/
glassfish
/
9a68cc8076d14c77aba791fd5c955b7c7a175593
/
.
/
appserver
/
tests
/
appserv-tests
/
devtests
/
jdbc
/
onlygetconnectionservlet
/
sql
/
create.sql
blob: 55cfc028af7a73fe92111cad0989d3c4cc26b9a9 [
file
]
DROP
TABLE
ONLYGETCONNECTION
;
CREATE
TABLE
ONLYGETCONNECTION
(
name char
(
20
),
num integer
);
INSERT
INTO
ONLYGETCONNECTION
values
(
'abcd'
,
120
);
INSERT
INTO
ONLYGETCONNECTION
values
(
'pqrs'
,
220
);