How To Correctly Set The Sqlite_max_variable_number From A Connection?
I'm using Peewee and obtain my connection from an URL like this: from playhouse.db_url import connect db = connect('sqlite:///C:/some/file.db') connection = db.connection() connec
Solution 1:
See the documentation here: https://www.sqlite.org/limits.html#max_variable_number
You will need to recompile Sqlite to raise the limits.
Post a Comment for "How To Correctly Set The Sqlite_max_variable_number From A Connection?"