sea_orm

Trait StatementBuilder

Source
pub trait StatementBuilder {
    // Required method
    fn build(&self, db_backend: &DbBackend) -> Statement;
}
Expand description

Any type that can build a Statement

Required Methodsยง

Source

fn build(&self, db_backend: &DbBackend) -> Statement

Method to call in order to build a Statement

Implementations on Foreign Typesยง

Sourceยง

impl StatementBuilder for TypeAlterStatement

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Sourceยง

impl StatementBuilder for TypeCreateStatement

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Sourceยง

impl StatementBuilder for TypeDropStatement

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Sourceยง

impl StatementBuilder for ForeignKeyCreateStatement

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Sourceยง

impl StatementBuilder for ForeignKeyDropStatement

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Sourceยง

impl StatementBuilder for IndexCreateStatement

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Sourceยง

impl StatementBuilder for IndexDropStatement

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Sourceยง

impl StatementBuilder for DeleteStatement

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Sourceยง

impl StatementBuilder for InsertStatement

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Sourceยง

impl StatementBuilder for SelectStatement

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Sourceยง

impl StatementBuilder for UpdateStatement

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Sourceยง

impl StatementBuilder for WithQuery

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Sourceยง

impl StatementBuilder for TableAlterStatement

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Sourceยง

impl StatementBuilder for TableCreateStatement

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Sourceยง

impl StatementBuilder for TableDropStatement

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Sourceยง

impl StatementBuilder for TableRenameStatement

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Sourceยง

impl StatementBuilder for TableTruncateStatement

Sourceยง

fn build(&self, db_backend: &DbBackend) -> Statement

Implementorsยง