Struct sqlx_core::sqlite::SqliteStatement
source · [−]pub struct SqliteStatement<'q> { /* private fields */ }
Trait Implementations
sourceimpl<'q> Clone for SqliteStatement<'q>
impl<'q> Clone for SqliteStatement<'q>
sourcefn clone(&self) -> SqliteStatement<'q>
fn clone(&self) -> SqliteStatement<'q>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl ColumnIndex<SqliteStatement<'_>> for &str
impl ColumnIndex<SqliteStatement<'_>> for &str
sourcefn index(&self, statement: &SqliteStatement<'_>) -> Result<usize, Error>
fn index(&self, statement: &SqliteStatement<'_>) -> Result<usize, Error>
Returns a valid positional index into the row or statement, ColumnIndexOutOfBounds
, or,
ColumnNotFound
. Read more
sourceimpl ColumnIndex<SqliteStatement<'_>> for usize
impl ColumnIndex<SqliteStatement<'_>> for usize
sourcefn index(&self, statement: &SqliteStatement<'_>) -> Result<usize, Error>
fn index(&self, statement: &SqliteStatement<'_>) -> Result<usize, Error>
Returns a valid positional index into the row or statement, ColumnIndexOutOfBounds
, or,
ColumnNotFound
. Read more
sourceimpl<'q> Debug for SqliteStatement<'q>
impl<'q> Debug for SqliteStatement<'q>
sourceimpl<'q> Statement<'q> for SqliteStatement<'q>
impl<'q> Statement<'q> for SqliteStatement<'q>
type Database = Sqlite
sourcefn to_owned(&self) -> SqliteStatement<'static>
fn to_owned(&self) -> SqliteStatement<'static>
Creates an owned statement from this statement reference. This copies the original SQL text. Read more
sourcefn parameters(&self) -> Option<Either<&[SqliteTypeInfo], usize>>
fn parameters(&self) -> Option<Either<&[SqliteTypeInfo], usize>>
Get the expected parameters for this statement. Read more
sourcefn columns(&self) -> &[SqliteColumn]
fn columns(&self) -> &[SqliteColumn]
Get the columns expected to be returned by executing this statement.
fn query(&self) -> Query<'_, Self::Database, SqliteArguments<'_>>
fn query_with<'s, A>(&'s self, arguments: A) -> Query<'s, Self::Database, A> where
A: IntoArguments<'s, Self::Database>,
fn query_as<O>(
&self
) -> QueryAs<'_, Self::Database, O, <Self::Database as HasArguments<'_>>::Arguments> where
O: for<'r> FromRow<'r, <Self::Database as Database>::Row>,
fn query_as_with<'s, O, A>(
&'s self,
arguments: A
) -> QueryAs<'s, Self::Database, O, A> where
O: for<'r> FromRow<'r, <Self::Database as Database>::Row>,
A: IntoArguments<'s, Self::Database>,
fn query_scalar<O>(
&self
) -> QueryScalar<'_, Self::Database, O, <Self::Database as HasArguments<'_>>::Arguments> where
(O,): for<'r> FromRow<'r, <Self::Database as Database>::Row>,
fn query_scalar_with<'s, O, A>(
&'s self,
arguments: A
) -> QueryScalar<'s, Self::Database, O, A> where
(O,): for<'r> FromRow<'r, <Self::Database as Database>::Row>,
A: IntoArguments<'s, Self::Database>,
sourcefn column<I>(&self, index: I) -> &<Self::Database as Database>::Column where
I: ColumnIndex<Self>,
fn column<I>(&self, index: I) -> &<Self::Database as Database>::Column where
I: ColumnIndex<Self>,
Gets the column information at index
. Read more
sourcefn try_column<I>(
&self,
index: I
) -> Result<&<Self::Database as Database>::Column, Error> where
I: ColumnIndex<Self>,
fn try_column<I>(
&self,
index: I
) -> Result<&<Self::Database as Database>::Column, Error> where
I: ColumnIndex<Self>,
Gets the column information at index
or None
if out of bounds.
Auto Trait Implementations
impl<'q> RefUnwindSafe for SqliteStatement<'q>
impl<'q> Send for SqliteStatement<'q>
impl<'q> Sync for SqliteStatement<'q>
impl<'q> Unpin for SqliteStatement<'q>
impl<'q> UnwindSafe for SqliteStatement<'q>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more