Enum arrow_odbc::ColumnFailure
source · [−]pub enum ColumnFailure {
ZeroSizedColumn {
sql_type: OdbcDataType,
},
UnknownStringLength {
sql_type: OdbcDataType,
source: Error,
},
UnsupportedArrowType(ArrowDataType),
FailedToDescribeColumn(Error),
}Variants
ZeroSizedColumn
Fields
sql_type: OdbcDataTypeWe are getting a display or column size from ODBC but it is not larger than 0.
UnknownStringLength
Unable to retrieve the column display size for the column.
UnsupportedArrowType(ArrowDataType)
The type specified in the arrow schema is not supported to be fetched from the database.
FailedToDescribeColumn(Error)
At ODBC api calls gaining information about the columns did fail.
Implementations
Provides the error with additional context of Error with column name and index.