blob: 2ce602363d1e9906e15e911e30c49a037b1dfef9 [file] [log] [blame]
drop table myblob;
create table myblob (
id int primary key,
name VARCHAR(100),
blb BLOB,
byteblb BLOB,
byteblb2 BLOB
);
commit;
insert into myblob values (
1,
'AAA',
CAST('4444444444' AS BLOB),
CAST('7777777777' AS BLOB),
CAST('9999999999' AS BLOB));
commit;