Skip to content

Commit 20eb103

Browse files
authored
sqlite: docs statement.set*
1 parent 3087fbe commit 20eb103

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

doc/api/sqlite.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -917,6 +917,7 @@ added: v22.5.0
917917

918918
* `enabled` {boolean} Enables or disables support for binding named parameters
919919
without the prefix character.
920+
* Returns: {StatementSync} The prepared statement.
920921

921922
The names of SQLite parameters begin with a prefix character. By default,
922923
`node:sqlite` requires that this prefix character is present when binding
@@ -943,6 +944,7 @@ added:
943944
-->
944945

945946
* `enabled` {boolean} Enables or disables support for unknown named parameters.
947+
* Returns: {StatementSync} The prepared statement.
946948

947949
By default, if an unknown name is encountered while binding parameters, an
948950
exception is thrown. This method allows unknown named parameters to be ignored.
@@ -956,6 +958,7 @@ added:
956958
-->
957959

958960
* `enabled` {boolean} Enables or disables the return of query results as arrays.
961+
* Returns: {StatementSync} The prepared statement.
959962

960963
When enabled, query results returned by the `all()`, `get()`, and `iterate()` methods will be returned as arrays instead
961964
of objects.
@@ -968,6 +971,7 @@ added: v22.5.0
968971

969972
* `enabled` {boolean} Enables or disables the use of `BigInt`s when reading
970973
`INTEGER` fields from the database.
974+
* Returns: {StatementSync} The prepared statement.
971975

972976
When reading from the database, SQLite `INTEGER`s are mapped to JavaScript
973977
numbers by default. However, SQLite `INTEGER`s can store values larger than

0 commit comments

Comments
 (0)