Crate serde_sql

Crate serde_sql 

Source
Expand description

Stream serde data directly into SQLite INSERT statements.

The crate focuses on emitting SQL without allocating intermediate data structures. Call serialize_insert with a buffer and any serde::Serialize struct to append a value list of the form (value1, value2, ...).

Enums§

SqlSerializeError
Errors emitted while serialising a struct into SQL literals.

Functions§

serialize_insert
Serialises a struct into buffer as (value1, value2, ...).