-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/sql-query-connector-on-wasm32-unknown-unknown' int…
…o feat/query-core-on-wasm32-unknown-unknown
- Loading branch information
Showing
24 changed files
with
373 additions
and
385 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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
pub use wasm::common::MssqlUrl; | ||
//! Wasm-compatible definitions for the MSSQL connector. | ||
//! This module is only available with the `mssql` feature. | ||
pub(crate) mod url; | ||
|
||
#[cfg(feature = "mssql")] | ||
pub(crate) mod wasm; | ||
pub use url::*; | ||
|
||
#[cfg(feature = "mssql-native")] | ||
pub(crate) mod native; |
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
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
pub use wasm::common::MysqlUrl; | ||
pub use wasm::error::MysqlError; | ||
//! Wasm-compatible definitions for the MySQL connector. | ||
//! This module is only available with the `mysql` feature. | ||
pub(crate) mod error; | ||
pub(crate) mod url; | ||
|
||
#[cfg(feature = "mysql")] | ||
pub(crate) mod wasm; | ||
pub use error::MysqlError; | ||
pub use url::*; | ||
|
||
#[cfg(feature = "mysql-native")] | ||
pub(crate) mod native; |
2 changes: 2 additions & 0 deletions
2
quaint/src/connector/mysql/wasm/error.rs → quaint/src/connector/mysql/error.rs
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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
pub use wasm::common::PostgresUrl; | ||
pub use wasm::error::PostgresError; | ||
//! Wasm-compatible definitions for the PostgreSQL connector. | ||
//! This module is only available with the `postgresql` feature. | ||
pub(crate) mod error; | ||
pub(crate) mod url; | ||
|
||
#[cfg(feature = "postgresql")] | ||
pub(crate) mod wasm; | ||
pub use error::PostgresError; | ||
pub use url::*; | ||
|
||
#[cfg(feature = "postgresql-native")] | ||
pub(crate) mod native; |
File renamed without changes.
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
Oops, something went wrong.