mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-30 13:20:59 +00:00
* WIP rt refactors * refactor: break drivers out into separate crates also cleans up significant technical debt
56 lines
1.2 KiB
Rust
56 lines
1.2 KiB
Rust
pub(crate) use sqlx_core::database::{
|
|
Database, HasArguments, HasStatement, HasStatementCache, HasValueRef,
|
|
};
|
|
|
|
use crate::{
|
|
SqliteArgumentValue, SqliteArguments, SqliteColumn, SqliteConnection, SqliteQueryResult,
|
|
SqliteRow, SqliteStatement, SqliteTransactionManager, SqliteTypeInfo, SqliteValue,
|
|
SqliteValueRef,
|
|
};
|
|
|
|
/// Sqlite database driver.
|
|
#[derive(Debug)]
|
|
pub struct Sqlite;
|
|
|
|
impl Database for Sqlite {
|
|
type Connection = SqliteConnection;
|
|
|
|
type TransactionManager = SqliteTransactionManager;
|
|
|
|
type Row = SqliteRow;
|
|
|
|
type QueryResult = SqliteQueryResult;
|
|
|
|
type Column = SqliteColumn;
|
|
|
|
type TypeInfo = SqliteTypeInfo;
|
|
|
|
type Value = SqliteValue;
|
|
|
|
const NAME: &'static str = "SQLite";
|
|
|
|
const URL_SCHEMES: &'static [&'static str] = &["sqlite"];
|
|
}
|
|
|
|
impl<'r> HasValueRef<'r> for Sqlite {
|
|
type Database = Sqlite;
|
|
|
|
type ValueRef = SqliteValueRef<'r>;
|
|
}
|
|
|
|
impl<'q> HasArguments<'q> for Sqlite {
|
|
type Database = Sqlite;
|
|
|
|
type Arguments = SqliteArguments<'q>;
|
|
|
|
type ArgumentBuffer = Vec<SqliteArgumentValue<'q>>;
|
|
}
|
|
|
|
impl<'q> HasStatement<'q> for Sqlite {
|
|
type Database = Sqlite;
|
|
|
|
type Statement = SqliteStatement<'q>;
|
|
}
|
|
|
|
impl HasStatementCache for Sqlite {}
|