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.
Enums§
- Error
- Errors that can occur during database schema management or data insertion.
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.