Trait sqlite::Bindable
[−]
[src]
pub trait Bindable {
fn bind(&self, &mut Statement, usize) -> Result<()>;
}A type suitable for binding to a prepared statement.
Required Methods
fn bind(&self, &mut Statement, usize) -> Result<()>
Bind to a parameter.
The leftmost parameter has the index 1.