mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Added drop for Connection to prevent fd leak
Added call to flush_prepared_statement_cache otherwise InnerConnection receives DatabaseBusy on sqlite3_close
This commit is contained in:
parent
d5bd7d9601
commit
bdd4f9a1a9
@ -185,6 +185,12 @@ pub struct Connection {
|
||||
|
||||
unsafe impl Send for Connection {}
|
||||
|
||||
impl Drop for Connection {
|
||||
fn drop(&mut self) {
|
||||
self.flush_prepared_statement_cache();
|
||||
}
|
||||
}
|
||||
|
||||
impl Connection {
|
||||
/// Open a new connection to a SQLite database.
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user