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?
Moderators: gto, EgonHugeist
Code: Select all
INSERT INTO t1 VALUES(x'0500', x'0500', x'0500', x'0500', x'0500');
not mentioned before that I use TZSQLProcessor to handle instert statement.What does zeoslib make from your insert statement when sending it to SQLite? You can use a TZSQLMonitor to find that out.
I've solved that issues using TZQuery - works fine.Seems to me the error comes from SQLite itself. because of a syntax error?