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]
impl SqliteQueryBuilderTrait Implementations
impl Default for SqliteQueryBuilder[src]
impl Default for SqliteQueryBuilderfn default() -> SqliteQueryBuilder[src]
fn default() -> SqliteQueryBuilderReturns the "default value" for a type. Read more
impl QueryBuilder<Sqlite> for SqliteQueryBuilder[src]
impl QueryBuilder<Sqlite> for SqliteQueryBuilderfn push_sql(&mut self, sql: &str)[src]
fn push_sql(&mut self, sql: &str)Add sql to the end of the query being constructed.
fn push_identifier(&mut self, identifier: &str) -> QueryResult<()>[src]
fn push_identifier(&mut self, identifier: &str) -> QueryResult<()>Quote identifier, and add it to the end of the query being constructed. Read more
fn push_bind_param(&mut self)[src]
fn push_bind_param(&mut self)Add a placeholder for a bind parameter to the end of the query being constructed. Read more
fn finish(self) -> String[src]
fn finish(self) -> StringReturns the constructed SQL query.
Auto Trait Implementations
impl Send for SqliteQueryBuilder
impl Send for SqliteQueryBuilderimpl Sync for SqliteQueryBuilder
impl Sync for SqliteQueryBuilder