-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement unsigned int support for sqlite
- Loading branch information
1 parent
0758ffd
commit b02c6c5
Showing
2 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
use std::convert::TryInto; | ||
|
||
use crate::decode::Decode; | ||
use crate::encode::{Encode, IsNull}; | ||
use crate::error::BoxDynError; | ||
use crate::sqlite::type_info::DataType; | ||
use crate::sqlite::{Sqlite, SqliteArgumentValue, SqliteTypeInfo, SqliteValueRef}; | ||
use crate::types::Type; | ||
|
||
impl Type<Sqlite> for u8 { | ||
fn type_info() -> SqliteTypeInfo { | ||
SqliteTypeInfo(DataType::Int) | ||
} | ||
|
||
fn compatible(ty: &SqliteTypeInfo) -> bool { | ||
matches!(ty.0, DataType::Int | DataType::Int64) | ||
} | ||
} | ||
|
||
impl<'q> Encode<'q, Sqlite> for u8 { | ||
fn encode_by_ref(&self, args: &mut Vec<SqliteArgumentValue<'q>>) -> IsNull { | ||
args.push(SqliteArgumentValue::Int(*self as i32)); | ||
|
||
IsNull::No | ||
} | ||
} | ||
|
||
impl<'r> Decode<'r, Sqlite> for u8 { | ||
fn decode(value: SqliteValueRef<'r>) -> Result<Self, BoxDynError> { | ||
Ok(value.int().try_into()?) | ||
} | ||
} | ||
|
||
impl Type<Sqlite> for u16 { | ||
fn type_info() -> SqliteTypeInfo { | ||
SqliteTypeInfo(DataType::Int) | ||
} | ||
|
||
fn compatible(ty: &SqliteTypeInfo) -> bool { | ||
matches!(ty.0, DataType::Int | DataType::Int64) | ||
} | ||
} | ||
|
||
impl<'q> Encode<'q, Sqlite> for u16 { | ||
fn encode_by_ref(&self, args: &mut Vec<SqliteArgumentValue<'q>>) -> IsNull { | ||
args.push(SqliteArgumentValue::Int(*self as i32)); | ||
|
||
IsNull::No | ||
} | ||
} | ||
|
||
impl<'r> Decode<'r, Sqlite> for u16 { | ||
fn decode(value: SqliteValueRef<'r>) -> Result<Self, BoxDynError> { | ||
Ok(value.int().try_into()?) | ||
} | ||
} | ||
|
||
impl Type<Sqlite> for u32 { | ||
fn type_info() -> SqliteTypeInfo { | ||
SqliteTypeInfo(DataType::Int64) | ||
} | ||
|
||
fn compatible(ty: &SqliteTypeInfo) -> bool { | ||
matches!(ty.0, DataType::Int | DataType::Int64) | ||
} | ||
} | ||
|
||
impl<'q> Encode<'q, Sqlite> for u32 { | ||
fn encode_by_ref(&self, args: &mut Vec<SqliteArgumentValue<'q>>) -> IsNull { | ||
args.push(SqliteArgumentValue::Int64(*self as i64)); | ||
|
||
IsNull::No | ||
} | ||
} | ||
|
||
impl<'r> Decode<'r, Sqlite> for u32 { | ||
fn decode(value: SqliteValueRef<'r>) -> Result<Self, BoxDynError> { | ||
Ok(value.int64().try_into()?) | ||
} | ||
} | ||
|
||
impl Type<Sqlite> for u64 { | ||
fn type_info() -> SqliteTypeInfo { | ||
SqliteTypeInfo(DataType::Int64) | ||
} | ||
|
||
fn compatible(ty: &SqliteTypeInfo) -> bool { | ||
matches!(ty.0, DataType::Int | DataType::Int64) | ||
} | ||
} | ||
|
||
impl<'q> Encode<'q, Sqlite> for u64 { | ||
fn encode_by_ref(&self, args: &mut Vec<SqliteArgumentValue<'q>>) -> IsNull { | ||
args.push(SqliteArgumentValue::Int64(*self as i64)); | ||
|
||
IsNull::No | ||
} | ||
} | ||
|
||
impl<'r> Decode<'r, Sqlite> for u64 { | ||
fn decode(value: SqliteValueRef<'r>) -> Result<Self, BoxDynError> { | ||
Ok(value.int64().try_into()?) | ||
} | ||
} |