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
Currently the constructor accepts memory=True or memory_name=... and uses those to create a connection, but does not record what those values were:
memory=True
memory_name=...
sqlite-utils/sqlite_utils/db.py
Lines 307 to 349 in 1260bdc
This makes it hard to tell if a database object is to an in-memory or a file-based database, which is sometimes useful to know.
The text was updated successfully, but these errors were encountered:
Maybe just populate db.memory: bool and db.memory_name: Optional[str] for this, then document them.
db.memory: bool
db.memory_name: Optional[str]
Sorry, something went wrong.
No branches or pull requests
Currently the constructor accepts
memory=True
ormemory_name=...
and uses those to create a connection, but does not record what those values were:sqlite-utils/sqlite_utils/db.py
Lines 307 to 349 in 1260bdc
This makes it hard to tell if a database object is to an in-memory or a file-based database, which is sometimes useful to know.
The text was updated successfully, but these errors were encountered: