sq3_parser

Crates.iosq3_parser
lib.rssq3_parser
version0.3.3
sourcesrc
created_at2024-08-12 14:25:48.156745
updated_at2024-08-17 19:12:41.617238
descriptionSQLite reader with no dependencies
homepage
repositoryhttps://github.com/ancos2505/sq3-rs
max_upload_size
id1334519
size205,346
(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