mirror of
https://github.com/fluencelabs/sqlite-wasm-connector
synced 2025-06-12 07:01:19 +00:00
Drop the lifetime parameter of Database
This commit is contained in:
@ -65,6 +65,6 @@ pub use statement::{Statement, Binding, Value};
|
||||
|
||||
/// Open a database.
|
||||
#[inline]
|
||||
pub fn open<'l>(path: &std::path::Path) -> Result<Database<'l>> {
|
||||
pub fn open(path: &std::path::Path) -> Result<Database> {
|
||||
Database::open(path)
|
||||
}
|
||||
|
Reference in New Issue
Block a user