mirror of
https://github.com/fluencelabs/sqlite-wasm-connector
synced 2025-06-22 03:21:32 +00:00
Eliminate Binding; introduce Parameter
This commit is contained in:
@ -90,10 +90,10 @@ mod statement;
|
||||
|
||||
pub use database::Database;
|
||||
pub use error::{Error, ErrorKind};
|
||||
pub use statement::{Statement, Binding, Value, State};
|
||||
pub use statement::{Statement, State, Parameter, Value};
|
||||
|
||||
/// A result.
|
||||
pub type Result<T> = ::std::result::Result<T, Error>;
|
||||
pub type Result<T> = std::result::Result<T, Error>;
|
||||
|
||||
/// Open a connection to a new or existing database.
|
||||
#[inline]
|
||||
|
Reference in New Issue
Block a user