[][src]Trait sqlite::Bindable

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.

Loading content...

Implementations on Foreign Types

impl<'l> Bindable for &'l [u8][src]

impl Bindable for f64[src]

impl Bindable for i64[src]

impl<'l> Bindable for &'l str[src]

impl Bindable for ()[src]

Loading content...

Implementors

impl<'l> Bindable for &'l Value[src]

Loading content...