We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would like to be able to set sqlite3.connection parameters. For example, check_some_thread.
sqlite3.connection
check_some_thread
I will be grateful for help :)
maybe something like that?
db = SQLite3x("db.db", connection_parameters={"check_some_thread": False})
The text was updated successfully, but these errors were encountered:
v0.2.0.4
fa5c549
- Added feature to set optional sqlite3 connection parameters #57 - Added option to desable connetion with Database object init #56 - [IN PROGRESS] "With-as" statement #55 - Fixed BUG | Typing mistakes #51 - Docs update Co-Authored-By: Phizilion <[email protected]>
db = SQLite3x( path='database.db', init_connection=False # Disable connection initialization within database class object ) db.connect(check_same_thread=False) # example print(db.tables_names) db.disconnect()
Sorry, something went wrong.
No branches or pull requests
I would like to be able to set
sqlite3.connection
parameters. For example,check_some_thread
.I will be grateful for help :)
maybe something like that?
The text was updated successfully, but these errors were encountered: