Enum arrow_odbc::Error [−][src]
pub enum Error {
UnsupportedArrowType(ArrowDataType),
FailedToDescribeColumn(Error),
UnknownStringLength {
sql_type: OdbcDataType,
source: Error,
},
InvalidDisplaySize(isize),
UnableToRetrieveNumCols(Error),
}Variants
UnsupportedArrowType(ArrowDataType)The type specified in the arrow schema is not supported to be fetched from the database.
Tuple Fields of UnsupportedArrowType
FailedToDescribeColumn(Error)Tuple Fields of FailedToDescribeColumn
0: ErrorFields of UnknownStringLength
sql_type: OdbcDataTypesource: ErrorInvalidDisplaySize(isize)Tuple Fields of InvalidDisplaySize
0: isizeUnableToRetrieveNumCols(Error)Tuple Fields of UnableToRetrieveNumCols
0: Error