Enum arrow_odbc::Error [−][src]
pub enum Error {
UnableToRetrieveNumCols(Error),
ColumnFailure {
name: String,
index: usize,
source: ColumnFailure,
},
}Expand description
A variation of things which can go wrong then creating an [OdbcReader].
Variants
UnableToRetrieveNumCols(Error)
Tuple Fields
0: ErrorFailure to retrieve the number of columns from the result set.
ColumnFailure
Indicates that the error is related to a specify column.
