pub trait HasDataType {
    fn data_type(&self) -> DataType;
}
Expand description

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

Users usually will not utilize this trait directly.

Required methods

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

Implementations on Foreign Types

Implementors