Multithreading for Sqlite, plus expression composition
Project description
More SQLite!
Multithreading for Sqlite, plus expression composition
Multi-threaded Sqlite
This module wraps the sqlite3.connection
with thread-safe traffic manager. Here is typical usage:
from mo_sqlite import Sqlite
db = Sqlite("mydb.sqlite")
with db.transaction() as t:
t.command("insert into mytable values (1, 2, 3)")
While you may have each thread own a sqlite3.connection
to the same file, you will still get exceptions when another thread has the file locked.
Pull JSON out of database
This module includes a minimum experimental structure that can describe pulling deeply nested JSON documents out of a normalized database. The tactic is to shape a single query who's resultset can be easily converted to the desired JSON by Python. Read more on pulling json from a database
There are multiple normal forms, including domain key normal form, and columnar form; these have a multitude one-to-one relations, all represent the same logical schema, but differ in their access patterns to optimize for particular use cases. This module intends to hide the particular database schema from the caller; exposing just the logical schema.
This experiment compliments the mo-columns experiment, which is about pushing JSON into a database.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for mo_sqlite-1.522.24033-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0b426812597c347eabcb36e1f70981a4255a95534b4f5f3c16983291e78660d |
|
MD5 | c5a5cd0c841c41c48610068018f87d49 |
|
BLAKE2b-256 | bd88ba158dae4263d89d3104a2d66834ad3133d7177c88b9e44054b0258896ed |