Struct diesel::sqlite::query_builder::SqliteQueryBuilder [] [src]

pub struct SqliteQueryBuilder { /* fields omitted */ }

Constructs SQL queries for use with the SQLite backend

Methods

impl SqliteQueryBuilder
[src]

[src]

Construct a new query builder with an empty query

Trait Implementations

impl Default for SqliteQueryBuilder
[src]

[src]

Returns the "default value" for a type. Read more

impl QueryBuilder<Sqlite> for SqliteQueryBuilder
[src]

[src]

Add sql to the end of the query being constructed.

[src]

Quote identifier, and add it to the end of the query being constructed. Read more

[src]

Add a placeholder for a bind parameter to the end of the query being constructed. Read more

[src]

Returns the constructed SQL query.

Auto Trait Implementations