Expand description
Drizzle Core - SQL generation library
§no_std Support
This crate supports no_std environments with an allocator:
# With std (default)
drizzle-core = "0.1"
# no_std with allocator
drizzle-core = { version = "0.1", default-features = false, features = ["alloc"] }Re-exports§
pub use conversions::ToSQL;pub use param::OwnedParam;pub use param::Param;pub use param::ParamBind;pub use schema::OrderBy;pub use sql::OwnedSQL;pub use sql::OwnedSQLChunk;pub use sql::SQL;pub use sql::SQLChunk;pub use sql::Token;pub use placeholder::*;pub use query::*;pub use traits::*;
Modules§
- conversions
- error
- Error types for drizzle-core
- expressions
- helpers
- param
- placeholder
- prepared
- query
- schema
- sql
- traits