17 releases

0.3.3 Aug 17, 2024
0.3.2 Aug 17, 2024
0.2.16 Aug 9, 2024
0.2.5 Jul 31, 2024
0.1.9 Jul 29, 2024

#768 in Parser implementations

Download history 138/week @ 2024-07-22 1247/week @ 2024-07-29 420/week @ 2024-08-05 557/week @ 2024-08-12 17/week @ 2024-08-19

1,122 downloads per month

MIT license

290KB
9K 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