Struct sqlite::Statement

source ·
pub struct Statement<'l> { /* private fields */ }
Expand description

A prepared statement.

Implementations§

source§

impl<'l> Statement<'l>

source

pub fn bind<T: Bindable>(&mut self, value: T) -> Result<()>

Bind values to parameters.

In case of integer indices, the first parameter has index 1.

Examples
let query = "SELECT * FROM users WHERE name = ?";
let mut statement = connection.prepare(query)?;
statement.bind((1, "Bob"))?;
let query = "SELECT * FROM users WHERE name = ?";
let mut statement = connection.prepare(query)?;
statement.bind(&[(1, "Bob")][..])?;
let query = "SELECT * FROM users WHERE name = :name";
let mut statement = connection.prepare(query)?;
statement.bind((":name", "Bob"))?;
let query = "SELECT * FROM users WHERE name = :name";
let mut statement = connection.prepare(query)?;
statement.bind(&[(":name", "Bob")][..])?;
let query = "SELECT * FROM users WHERE id = :id AND name = :name";
let mut statement = connection.prepare(query)?;
statement.bind::<&[(_, Value)]>(&[
    (":id", 1.into()),
    (":name", "Bob".into()),
][..])?;
source

pub fn bind_iter<T, U>(&mut self, value: T) -> Result<()>where
T: IntoIterator<Item = U>,
U: Bindable,

Bind values to parameters via an iterator.

Examples
let query = "INSERT INTO users VALUES (:id, :name)";
let mut statement = connection.prepare(query)?;
statement.bind_iter::<_, (_, Value)>([
    (":name", "Bob".into()),
    (":id", 42.into()),
])?;
source

pub fn column_count(&self) -> usize

Return the number of columns.

source

pub fn column_name<T: ColumnIndex>(&self, index: T) -> Result<&str>

Return the name of a column.

In case of integer indices, the first column has index 0.

source

pub fn column_names(&self) -> &[String]

Return column names.

source

pub fn column_type<T: ColumnIndex>(&self, index: T) -> Result<Type>

Return the type of a column.

The type becomes available after taking a step. In case of integer indices, the first column has index 0.

source

pub fn iter(&mut self) -> Cursor<'l, '_>

Create a cursor.

source

pub fn next(&mut self) -> Result<State>

Advance to the next state.

The function should be called multiple times until State::Done is reached in order to evaluate the statement entirely.

source

pub fn parameter_index(&self, parameter: &str) -> Result<Option<usize>>

Return the index for a named parameter if exists.

Examples
let query = "SELECT * FROM users WHERE name = :name";
let statement = connection.prepare(query)?;
assert_eq!(statement.parameter_index(":name")?.unwrap(), 1);
assert_eq!(statement.parameter_index(":asdf")?, None);
source

pub fn read<T, U>(&self, index: U) -> Result<T>where
T: ReadableWithIndex,
U: ColumnIndex,

Read a value from a column.

In case of integer indices, the first column has index 0.

source

pub fn reset(&mut self) -> Result<()>

Reset the internal state.

Trait Implementations§

source§

impl<'l> Drop for Statement<'l>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<'l, 'm> From<&'m mut Statement<'l>> for Cursor<'l, 'm>

source§

fn from(statement: &'m mut Statement<'l>) -> Self

Converts to this type from the input type.
source§

impl<'l> From<CursorWithOwnership<'l>> for Statement<'l>

source§

fn from(cursor: CursorWithOwnership<'l>) -> Self

Converts to this type from the input type.
source§

impl<'l> IntoIterator for Statement<'l>

§

type Item = Result<Row, Error>

The type of the elements being iterated over.
§

type IntoIter = CursorWithOwnership<'l>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<'l> RefUnwindSafe for Statement<'l>

§

impl<'l> !Send for Statement<'l>

§

impl<'l> !Sync for Statement<'l>

§

impl<'l> Unpin for Statement<'l>

§

impl<'l> UnwindSafe for Statement<'l>

Blanket Implementations§

source§

impl<T> Any for Twhere
T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere
T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere
T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere
U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere
U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere
U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.