Struct sea_orm::Statement [−][src]
Expand description
Defines an SQL statement
Fields
sql: StringThe SQL query
values: Option<Values>The values for the SQL statement’s parameters
db_backend: DbBackendThe database backend this statement is constructed for. The SQL dialect and values should be valid for the DbBackend.
Implementations
Create a Statement from a crate::DatabaseBackend and a raw SQL statement
pub fn from_sql_and_values<I>(
db_backend: DbBackend,
sql: &str,
values: I
) -> Self where
I: IntoIterator<Item = Value>,
pub fn from_sql_and_values<I>(
db_backend: DbBackend,
sql: &str,
values: I
) -> Self where
I: IntoIterator<Item = Value>,
Create a SQL statement from a crate::DatabaseBackend, a raw SQL statement and param values
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Statement
impl UnwindSafe for Statement
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more