On 09/12/16 14:09, Don V Nielsen wrote: > However, > it fails using the sqlite3 gem. The specific exception is "in > 'initialize': near "with": syntax error
That will be a SQLite version issue - older SQLite's didn't support with. While you made some effort around versions, whatever is happening there is an older library is actually used. You can use this to find out exactly what library version is used: SELECT sqlite_version(), sqlite_source_id(); Also this will give a list of compilation options, to verify: PRAGMA compile_options; Roger
signature.asc
Description: OpenPGP digital signature
_______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

