Capy-Bearer Documentation

sqlite_disconnect

host call

Capy

function sqlite_disconnect(handle : u64)

Description

Use sqlite_disconnect to close an SQLite connection. Do not use the handle after this call.

Example

Capy

var db := sqlite_connect(":memory:")
if db != 0 { sqlite_disconnect(db) }