Skip to main content

Crate sqlitepipe

Crate sqlitepipe 

Source
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.

Type Aliases§

Result