Sign in
third-party-mirror
/
glassfish
/
61c5787ff9380215ac7d310ce36855cdaac0cb2a
/
.
/
appserver
/
tests
/
v2-tests
/
appserv-tests
/
devtests
/
cmp
/
blob
/
sql
/
blob_mysql.sql
blob: 4e317991c0d82f1ddb7ef0f012a8bb6d7383a402 [
file
] [
log
] [
blame
]
drop
table
MYBLOB
;
create
table
MYBLOB
(
ID int
primary
key
,
NAME VARCHAR
(
100
),
BLB BLOB
(
255
),
BYTEBLB BLOB
(
255
),
BYTEBLB2 BLOB
(
255
)
)
ENGINE
=
InnoDB
;
commit
;
insert
into
MYBLOB
values
(
1
,
'AAA'
,
'4444444444'
,
'7777777777'
,
'9999999999'
);
commit
;