You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: doc/api/sqlite.md
+9-4
Original file line number
Diff line number
Diff line change
@@ -182,11 +182,14 @@ added:
182
182
*`useBigIntArguments` {boolean} If `true`, integer arguments to `function`
183
183
are converted to `BigInt`s. If `false`, integer arguments are passed as
184
184
JavaScript numbers. **Default:**`false`.
185
-
*`varargs` {boolean} If `true`, `function` can accept a variable number of
186
-
arguments. If `false`, `function` must be invoked with exactly
187
-
`function.length` arguments. **Default:**`false`.
185
+
*`varargs` {boolean} If `true`, `function` may be invoked with any number of
186
+
arguments (between zero and [`SQLITE_MAX_FUNCTION_ARG`][]). If `false`,
187
+
`function` must be invoked with exactly `function.length` arguments.
188
+
**Default:**`false`.
188
189
*`function` {Function} The JavaScript function to call when the SQLite
189
-
function is invoked.
190
+
function is invoked. The return value of this function should be a valid
191
+
SQLite data type: see [Type conversion between JavaScript and SQLite][].
192
+
The result defaults to `NULL` if the return value is `undefined`.
190
193
191
194
This method is used to create SQLite user-defined functions. This method is a
192
195
wrapper around [`sqlite3_create_function_v2()`][].
@@ -599,10 +602,12 @@ resolution handler passed to [`database.applyChangeset()`][]. See also
599
602
[Constants Passed To The Conflict Handler]: https://www.sqlite.org/session/c_changeset_conflict.html
600
603
[Constants Returned From The Conflict Handler]: https://www.sqlite.org/session/c_changeset_abort.html
0 commit comments