[][src]Trait odbc_api::handles::Input

pub unsafe trait Input: CData {
    fn data_type(&self) -> DataType;
}

Can be bound to a single placeholder in an SQL statement.

Users usually won't utilize this trait directly.

Required methods

fn data_type(&self) -> DataType

The SQL data as which the parameter is bound to ODBC.

Loading content...

Implementations on Foreign Types

impl Input for f64[src]

impl Input for f32[src]

impl Input for Date[src]

impl Input for i16[src]

impl Input for i32[src]

impl Input for i8[src]

impl Input for i64[src]

Loading content...

Implementors

impl Input for TextColumn[src]

impl Input for Bit[src]

impl<'_> Input for VarChar<'_>[src]

impl<T> Input for WithDataType<T> where
    T: Input
[src]

Loading content...