Problem with sqlite blob encoding
Posted: 23.05.2010, 18:54
Based on documentaction http://www.sqlite.org/datatype3.html SQLite allow to insert blob file using hex encoding (x character before string), i.e.:
after executing above example i've got error
unrecognized token: x'0500'
is there any solution to skip parser and send query directly to sqlite engine?
Code: Select all
INSERT INTO t1 VALUES(x'0500', x'0500', x'0500', x'0500', x'0500');
unrecognized token: x'0500'
is there any solution to skip parser and send query directly to sqlite engine?