sqlite3-sys icon indicating copy to clipboard operation
sqlite3-sys copied to clipboard

Bindings to SQLite

Results 3 sqlite3-sys issues
Sort by recently updated
recently updated
newest added

See for example: [`sqlite3_result_blob`](https://github.com/stainless-steel/sqlite3-sys/blob/main/src/base.rs#L2246). In sqlite3 these support special sentinel values which marks the value as transient, see: . This can only be done by coercing the sentinel value `-1`...

help wanted

The 'native' feature forces usage of the system sqlite, failing to compile if it is absent. This is distinct from the defaulting that the bundled sources as not used as...