Trait sqlite::ColumnIndex

source ·
pub trait ColumnIndex: Copy + Debug {
    fn index(self, statement: &Statement<'_>) -> Result<usize>;
}
Expand description

A type suitable for indexing columns in a prepared statement.

Required Methods

Identify the ordinal position.

The first column has index 0.

Implementations on Foreign Types

Implementors