Docs.rs
sqlrite-engine-0.9.1
sqlrite-engine 0.9.1
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
joaoh82
Dependencies
clap ^4.6
normal
optional
env_logger ^0.11
normal
optional
fs2 ^0.4
normal
optional
log ^0.4
normal
prettytable-rs ^0.10
normal
rustyline ^18.0
normal
optional
rustyline-derive ^0.12
normal
optional
serde_json ^1
normal
sqlparser ^0.61
normal
sqlrite-ask ^0.9.1
normal
optional
thiserror ^2.0
normal
Versions
67.61%
of the crate is documented
Go to latest version
Platform
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Skip to main content
Module create
sqlrite
0.9.1
Module create
Module Items
Structs
Functions
In sqlrite::
sql::
parser
sqlrite
::
sql
::
parser
Module
create
Copy item path
Source
Structs
§
Create
Query
The following structure represents a CREATE TABLE query already parsed and broken down into name and a Vector of
ParsedColumn
metadata
Parsed
Column
The schema for each SQL column in every table is represented by the following structure after parsed and tokenized
Functions
§
parse_
one_
column
Parses a single sqlparser
ColumnDef
into our internal
ParsedColumn
representation. Extracted from
CreateQuery::new
so
ALTER TABLE ADD COLUMN
can reuse the same column-shape parsing without re-implementing the type / constraint / default plumbing.