diff --git a/doc/api/sqlite.md b/doc/api/sqlite.md index 850358ff43aa86..40ec877ddde3f2 100644 --- a/doc/api/sqlite.md +++ b/doc/api/sqlite.md @@ -997,6 +997,15 @@ objects. If the prepared statement does not return any results, this method returns an empty array. The prepared statement [parameters are bound][] using the values in `namedParameters` and `anonymousParameters`. +### `statement.close()` + + + +Finalizes the prepared statement. An exception is thrown if the statement is +already finalized. This method is a wrapper around [`sqlite3_finalize()`][]. + ### `statement.columns()` + +Finalizes the prepared statement. If the prepared statement is already +finalized, then this is a no-op. + ## Class: `SQLTagStore`