Sign in
third-party-mirror
/
glassfish
/
f4dc06aafef4b1fc8c27862a2229ae83c69d8b7a
/
.
/
appserver
/
tests
/
v2-tests
/
appserv-tests
/
devtests
/
cmp
/
blob
/
sql
/
blob_mysql.sql
blob: 33d93db0cccac186c498d159ea0adde677be2ac2 [
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
;