sq3_parser 0.3.3

SQLite reader with no dependencies
Documentation
  • Coverage
  • 16.67%
    1 out of 6 items documented0 out of 2 items with examples
  • Size
  • Source code size: 205.25 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 7.56 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 14s Average build duration of successful builds.
  • all releases: 14s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • afsec

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.