Skip to content
Merged
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
10 changes: 9 additions & 1 deletion doc/api/sqlite.md
Original file line number Diff line number Diff line change
Expand Up @@ -735,11 +735,19 @@ Similar to the method above, but generates a more compact patchset. See [Changes
in the documentation of SQLite. An exception is thrown if the database or the session is not open. This method is a
wrapper around [`sqlite3session_patchset()`][].

### `session.close()`.
### `session.close()`

Closes the session. An exception is thrown if the database or the session is not open. This method is a
wrapper around [`sqlite3session_delete()`][].

### `session[Symbol.dispose]()`

<!-- YAML
added: v24.9.0
-->

Closes the session. If the session is already closed, does nothing.

## Class: `StatementSync`

<!-- YAML
Expand Down
Loading