opinionated lightweight sqlite wrapper written in rust
Go to file
Folling 300383c966
name mismatched argument count error fields
2023-08-12 12:33:12 +02:00
sqlite initial commit 2023-07-23 14:59:31 +02:00
src name mismatched argument count error fields 2023-08-12 12:33:12 +02:00
.gitignore update gitignore to ignore test databases 2023-08-04 11:24:02 +02:00
Cargo.toml name mismatched argument count error fields 2023-08-12 12:33:12 +02:00
README.md finalise cargo manifest 2023-07-25 10:50:08 +02:00
build.rs initial commit 2023-07-23 14:59:31 +02:00

README.md

Overview

You're probably looking for rusqlite instead. This library is barely configurable, very opinionated, and supports only a fraction of SQLite's features.

The following is currently supported:

  • executing single statements
  • executing batch statements (now with extra unsafety!)
  • querying a single row
  • querying multiple rows
  • querying and iterating over the results
  • transactions
  • migrations
  • backups