Struct rsfbclient::Statement[][src]

pub struct Statement<'c, 't, C: FirebirdClient> { /* fields omitted */ }

Implementations

impl<'c, 't, C> Statement<'c, 't, C> where
    C: FirebirdClient
[src]

pub fn prepare(
    tr: &'t mut Transaction<'c, C>,
    sql: &str,
    named_params: bool
) -> Result<Self, FbError>
[src]

Prepare the statement that will be executed

pub fn execute<T>(&mut self, params: T) -> Result<usize, FbError> where
    T: IntoParams
[src]

Execute the current statement, returning a count of affected rows upon success

Use () for no parameters or a tuple of parameters

pub fn query<'s, R, P>(
    &'s mut self,
    params: P
) -> Result<StatementFetch<'c, 's, R, C>, FbError> where
    R: FromRow,
    P: IntoParams
[src]

Execute the current statement and returns the lines founds

Use () for no parameters or a tuple of parameters

Trait Implementations

impl<C> Drop for Statement<'_, '_, C> where
    C: FirebirdClient
[src]

Auto Trait Implementations

impl<'c, 't, C> RefUnwindSafe for Statement<'c, 't, C> where
    C: RefUnwindSafe,
    <C as FirebirdClientDbOps>::DbHandle: RefUnwindSafe,
    <C as FirebirdClientSqlOps>::StmtHandle: RefUnwindSafe,
    <C as FirebirdClientSqlOps>::TrHandle: RefUnwindSafe

impl<'c, 't, C> Send for Statement<'c, 't, C>

impl<'c, 't, C> Sync for Statement<'c, 't, C> where
    C: Sync,
    <C as FirebirdClientDbOps>::DbHandle: Sync,
    <C as FirebirdClientSqlOps>::StmtHandle: Sync,
    <C as FirebirdClientSqlOps>::TrHandle: Sync

impl<'c, 't, C> Unpin for Statement<'c, 't, C> where
    <C as FirebirdClientSqlOps>::StmtHandle: Unpin,
    'c: 't, 

impl<'c, 't, C> !UnwindSafe for Statement<'c, 't, C>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,