#sqlite #sq-lite3 #idiomatic #reader

macro sq3_derive

SQLite reader with no dependencies

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

#1757 in Database interfaces

Download history 901/week @ 2024-07-30 508/week @ 2024-08-06 498/week @ 2024-08-13 18/week @ 2024-08-20 14/week @ 2024-08-27

615 downloads per month
Used in 2 crates

MIT license

8KB
75 lines

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.

No runtime deps