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;