Trait sqlx::Execute

source Ā·
pub trait Execute<'q, DB>: Send + Sizedwhere
    DB: Database,{
    // Required methods
    fn sql(&self) -> &'q str;
    fn statement(&self) -> Option<&<DB as HasStatement<'q>>::Statement>;
    fn take_arguments(&mut self) -> Option<<DB as HasArguments<'q>>::Arguments>;
    fn persistent(&self) -> bool;
}
Expand description

A type that may be executed against a database connection.

Implemented for the following:

Required MethodsĀ§

source

fn sql(&self) -> &'q str

Gets the SQL that will be executed.

source

fn statement(&self) -> Option<&<DB as HasStatement<'q>>::Statement>

Gets the previously cached statement, if available.

source

fn take_arguments(&mut self) -> Option<<DB as HasArguments<'q>>::Arguments>

Returns the arguments to be bound against the query string.

Returning None for Arguments indicates to use a ā€œsimpleā€ query protocol and to not prepare the query. Returning Some(Default::default()) is an empty arguments object that will be prepared (and cached) before execution.

source

fn persistent(&self) -> bool

Returns true if the statement should be cached.

Implementations on Foreign TypesĀ§

sourceĀ§

impl<'q, DB> Execute<'q, DB> for &'q strwhere DB: Database,

sourceĀ§

fn sql(&self) -> &'q str

sourceĀ§

fn statement(&self) -> Option<&<DB as HasStatement<'q>>::Statement>

sourceĀ§

fn take_arguments(&mut self) -> Option<<DB as HasArguments<'q>>::Arguments>

sourceĀ§

fn persistent(&self) -> bool

sourceĀ§

impl<'q, DB> Execute<'q, DB> for (&'q str, Option<<DB as HasArguments<'q>>::Arguments>)where DB: Database,

sourceĀ§

fn sql(&self) -> &'q str

sourceĀ§

fn statement(&self) -> Option<&<DB as HasStatement<'q>>::Statement>

sourceĀ§

fn take_arguments(&mut self) -> Option<<DB as HasArguments<'q>>::Arguments>

sourceĀ§

fn persistent(&self) -> bool

ImplementorsĀ§

sourceĀ§

impl<'q, DB, A> Execute<'q, DB> for Query<'q, DB, A>where DB: Database, A: Send + IntoArguments<'q, DB>,

sourceĀ§

impl<'q, DB, F, A> Execute<'q, DB> for Map<'q, DB, F, A>where F: Send, A: Send + IntoArguments<'q, DB>, DB: Database,

sourceĀ§

impl<'q, DB, O, A> Execute<'q, DB> for QueryAs<'q, DB, O, A>where O: Send, A: Send + 'q + IntoArguments<'q, DB>, DB: Database,

sourceĀ§

impl<'q, DB, O, A> Execute<'q, DB> for QueryScalar<'q, DB, O, A>where DB: Database, O: Send, A: Send + 'q + IntoArguments<'q, DB>,