mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-03-23 18:40:24 +00:00
sqlite: initial work in connection
This commit is contained in:
@@ -32,6 +32,10 @@ pub use sqlx_core::mysql::{self, MySql, MySqlConnection, MySqlPool};
|
||||
#[cfg_attr(docsrs, doc(cfg(feature = "postgres")))]
|
||||
pub use sqlx_core::postgres::{self, PgConnection, PgPool, Postgres};
|
||||
|
||||
#[cfg(feature = "sqlite")]
|
||||
#[cfg_attr(docsrs, doc(cfg(feature = "sqlite")))]
|
||||
pub use sqlx_core::sqlite::{self, SqliteConnection, SqlitePool, Sqlite};
|
||||
|
||||
#[cfg(feature = "macros")]
|
||||
#[doc(hidden)]
|
||||
pub extern crate sqlx_macros;
|
||||
@@ -75,4 +79,7 @@ pub mod prelude {
|
||||
|
||||
#[cfg(feature = "mysql")]
|
||||
pub use super::mysql::MySqlQueryAs;
|
||||
|
||||
#[cfg(feature = "sqlite")]
|
||||
pub use super::sqlite::SqliteQueryAs;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user