zak mc kracken wrote:
(I oversimplified the db to show the problem)
$ cat error
create table t(c);
select c from t; --COMMENT
$ sqlite < error
Incomplete SQL: select c from t; --COMMENT
$ sqlite -version
2.8.17
if I remove the '--COMMENT' there is no error... why?
the problem persist using /*COMMENT*/ style
This is a bug that was corrected in version 3.5.1 of SQLite (see
http://www.sqlite.org/changes.html). It works as expected in current
versions.
Do you really need to use version 2.8.17?
Dennis Cote
-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------