You are correct, sir. I discovered in the rake tasks the following little bit of code. It directs which version of sqlite to download and compile.
# BINARY_VERSION = "3.8.11.1" # URL_VERSION = "3081101" # URL_PATH = "/2015" Now I just need to figure out how to reinitiate the rake compile task after making the following update, then test. BINARY_VERSION = "3.15.2.0" URL_VERSION = "3150200" URL_PATH = "/2016" On Fri, Dec 9, 2016 at 5:27 PM, Roger Binns <rog...@rogerbinns.com> wrote: > 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 > > > > _______________________________________________ > sqlite-users mailing list > sqlite-users@mailinglists.sqlite.org > http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users > _______________________________________________ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users