mirror of
https://github.com/isar/rusqlite.git
synced 2025-09-16 04:32:19 +08:00
Add ToSql/FromSql for [u8; N]
This commit is contained in:
@@ -290,6 +290,9 @@ impl<'stmt> Row<'stmt> {
|
||||
FromSqlError::Other(err) => {
|
||||
Error::FromSqlConversionFailure(idx as usize, value.data_type(), err)
|
||||
}
|
||||
FromSqlError::InvalidSize(_, _) => {
|
||||
Error::FromSqlConversionFailure(idx as usize, value.data_type(), Box::new(err))
|
||||
}
|
||||
#[cfg(feature = "i128_blob")]
|
||||
FromSqlError::InvalidI128Size(_) => Error::InvalidColumnType(
|
||||
idx,
|
||||
|
Reference in New Issue
Block a user