Module postgres

Module postgres 

Source
Expand description

Implementation of PostgreSQL dialect of SQL, including some PostgreSQL specific features and tools.

§Supported statements

See each function’s docs for details on supported clauses and features.

Entry functionSQL statement
selectSELECT
fromSELECT (starting from FROM clause)
insert_intoINSERT INTO
delete_fromDELETE FROM
updateUPDATE
withWITH
create_tableCREATE TABLE

§Tools

ToolDescription
ParametersGenerator of statement parameter placeholders

Re-exports§

pub use general::with;
pub use general::Aliasable;
pub use statements::create_table;
pub use statements::delete_from;
pub use statements::from;
pub use statements::insert_into;
pub use statements::select;
pub use statements::update;
pub use statements::ColumnDefinitionable;
pub use statements::CreateTable;
pub use statements::DeleteFrom;
pub use statements::FromSelectBuilder;
pub use statements::InsertInto;
pub use statements::Joinable;
pub use statements::Orderable;
pub use statements::Select;
pub use statements::Update;
pub use tools::Parameters;

Modules§

general
Bits that are usable in different types of statements
statements
Specific statement related functions, types and traits.
tools
PostgreSQL-specific tools to make your life easier