Expand description
A library for managing SQLite tables dynamically and performing streaming data insertions.
Modules§
- column
- Defines the structure and types for database columns used in dynamic table management.
- sanitizing
- Utilities for sanitizing SQL identifiers to prevent injection and syntax errors.
- txmgmt
- module for managing a transaction daemon
Enums§
Functions§
- insert_
blob - Inserts binary data from standard input into the table.
- insert_
lines - Reads lines from a source and inserts each as a row into the table.
- insert_
row - Inserts a single row of raw data into the specified table.
- prepare_
db - Prepares the database schema by creating tables and synchronizing columns.