>The simple example below works as expected on Ubuntu, but fails on >Windows 7. Both using Python3.5 and Sqlite 2.6.0, so that’s not a >version issue.
2.6.0 is not the version of SQLite3, it is the version of the pysqlite2 wrapper module. When that third party package was incorporated into the Python distribution its name was changed to the package sqlite3. The "package (wrapper)" version is sqlite3.version or sqlite3.version_info The "SQLite3 (database engine)" versions is sqlite3.sqlite_version or sqlite3.sqlite_version_info So probably you have an "old as the hills" version of SQLite3 (the database engine -- the thing that actually does anything) on Windows 7. --- The fact that there's a Highway to Hell but only a Stairway to Heaven says a lot about anticipated traffic volume. _______________________________________________ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users