sq3-rs

Crates.iosq3-rs
lib.rssq3-rs
version0.3.3
sourcesrc
created_at2024-07-28 01:16:41.399568
updated_at2024-08-17 19:12:51.228856
descriptionSQLite reader with no dependencies
homepage
repositoryhttps://github.com/ancos2505/sq3-rs
max_upload_size
id1317645
size723,790
(ancos2505)

documentation

README

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.
Commit count: 0

cargo fmt