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
sqlite supports this:
https://docs.python.org/3/library/sqlite3.html#sqlite3.connect
If uri is true, database is interpreted as a URI. This allows you to specify options. For example, to open a database in read-only mode you can use:
db = sqlite3.connect('file:path/to/database?mode=ro', uri=True)
The text was updated successfully, but these errors were encountered:
should be handled on the python side. monetdbe_open only handles the extra structure with a limited set off options
Sorry, something went wrong.
gijzelaerr
No branches or pull requests
sqlite supports this:
https://docs.python.org/3/library/sqlite3.html#sqlite3.connect
If uri is true, database is interpreted as a URI. This allows you to specify options. For example, to open a database in read-only mode you can use:
The text was updated successfully, but these errors were encountered: