4 releases

0.3.3 Aug 17, 2024
0.3.2 Aug 17, 2024
0.3.1 Aug 13, 2024
0.3.0 Aug 12, 2024

#1002 in Database interfaces

Download history 135/week @ 2024-08-10 215/week @ 2024-08-17 7/week @ 2024-08-24 5/week @ 2024-08-31 8/week @ 2024-09-14 11/week @ 2024-09-21 39/week @ 2024-09-28 2/week @ 2024-10-05 1/week @ 2024-10-12

142 downloads per month
Used in sq3-rs

MIT license

210KB
7K SLoC

sq3-rs

SQLite3 library written in Idiomatic Rust and no dependencies (Under Development)

Getting Started

Run the task runner built on top o xtask pattern

alias cx="cargo xtask"
cx 
cx build
cx fuzzer

SQL

Syntax

Keywords

Initial approach in design decisions

Valid characters for column names and table names

  • Case insensitive letters (a-z or A-Z)
  • Numbers (0-9). After the first char.
  • Underscore (_). After the first char.

Dependencies