mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-07-24 12:53:45 +00:00
Implement close() on LimboStatement
This commit is contained in:
parent
ef6a1be335
commit
4dd2d1c64a
5 changed files with 55 additions and 4 deletions
|
@ -88,6 +88,15 @@ pub extern "system" fn Java_org_github_tursodatabase_core_LimboStatement_step<'l
|
|||
}
|
||||
}
|
||||
|
||||
#[no_mangle]
|
||||
pub extern "system" fn Java_org_github_tursodatabase_core_LimboStatement__1close<'local>(
|
||||
_env: JNIEnv<'local>,
|
||||
_obj: JObject<'local>,
|
||||
stmt_ptr: jlong
|
||||
) {
|
||||
LimboStatement::drop(stmt_ptr);
|
||||
}
|
||||
|
||||
fn row_to_obj_array<'local>(
|
||||
env: &mut JNIEnv<'local>,
|
||||
row: &limbo_core::Row,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue