Comment insérer un blob en SQL?

create table a(id integer, item blob);
insert into a values(3, FILE_READ('file.dat'));
Fair Fowl