diff --git a/doc/api/sqlite.md b/doc/api/sqlite.md index 2c66898bf376c0..c9c1e0563dbc38 100644 --- a/doc/api/sqlite.md +++ b/doc/api/sqlite.md @@ -634,6 +634,17 @@ added: v22.15.0 By default, if an unknown name is encountered while binding parameters, an exception is thrown. This method allows unknown named parameters to be ignored. +### `statement.setReturnArrays(enabled)` + + + +* `enabled` {boolean} Enables or disables the return of query results as arrays. + +When enabled, query results returned by the `all()`, `get()`, and `iterate()` methods will be returned as arrays instead +of objects. + ### `statement.setReadBigInts(enabled)`