pub struct Statement<'l> { /* private fields */ }
Expand description
A prepared statement.
Implementations§
source§impl<'l> Statement<'l>
impl<'l> Statement<'l>
sourcepub fn bind<T: Bindable>(&mut self, value: T) -> Result<()>
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()),
][..])?;
sourcepub fn bind_iter<T, U>(&mut self, value: T) -> Result<()>where
T: IntoIterator<Item = U>,
U: Bindable,
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()),
])?;
sourcepub fn next(&mut self) -> Result<State>
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.
sourcepub fn read<T, U>(&self, index: U) -> Result<T>where
T: ReadableWithIndex,
U: ColumnIndex,
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.
sourcepub fn column_count(&self) -> usize
pub fn column_count(&self) -> usize
Return the number of columns.
sourcepub fn column_name<T: ColumnIndex>(&self, index: T) -> Result<&str>
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.
sourcepub fn column_names(&self) -> &[String]
pub fn column_names(&self) -> &[String]
Return column names.
sourcepub fn column_type<T: ColumnIndex>(&self, index: T) -> Result<Type>
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.
sourcepub fn parameter_index(&self, parameter: &str) -> Result<Option<usize>>
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);
Trait Implementations§
source§impl<'l> From<CursorWithOwnership<'l>> for Statement<'l>
impl<'l> From<CursorWithOwnership<'l>> for Statement<'l>
source§fn from(cursor: CursorWithOwnership<'l>) -> Self
fn from(cursor: CursorWithOwnership<'l>) -> Self
Converts to this type from the input type.
source§impl<'l> IntoIterator for Statement<'l>
impl<'l> IntoIterator for Statement<'l>
Auto Trait Implementations§
impl<'l> Freeze for Statement<'l>
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more