Remove second field from RawStatement

Use sqlite3_db_handle instead
This commit is contained in:
gwenn
2018-04-03 20:18:51 +02:00
parent a0151f9073
commit 83775ee62d
3 changed files with 9 additions and 8 deletions

View File

@@ -895,7 +895,7 @@ impl InnerConnection {
}
};
self.decode_result(r).map(|_| {
Statement::new(conn, RawStatement::new(c_stmt, self.db()))
Statement::new(conn, RawStatement::new(c_stmt))
})
}