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§
- SqlSerialize
Error - Errors emitted while serialising a struct into SQL literals.
Functions§
- serialize_
insert - Serialises a struct into
bufferas(value1, value2, ...).