Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion doc/api/sqlite.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,10 @@ added: v22.5.0
-->

Closes the database connection. An exception is thrown if the database is not
open. This method is a wrapper around [`sqlite3_close_v2()`][].
open. An \[`ERR_INVALID_STATE`]\[] error is thrown if the method is called while a
statement is executing, for example from a user-defined function, an aggregate
function, or an authorizer callback. This method is a wrapper around
[`sqlite3_close_v2()`][].

### `database.loadExtension(path[, entryPoint])`

Expand Down
Loading