| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -321,7 +321,7 @@ This method allows one or more SQL statements to be executed without returning | |||
| 321 | 321 | any results. This method is useful when executing SQL statements read from a | |
| 322 | 322 | file. This method is a wrapper around [`sqlite3_exec()`][]. | |
| 323 | 323 | ||
| 324 | - ### `database.function(name[, options], function)` | ||
| 324 | + ### `database.function(name[, options], fn)` | ||
| 325 | 325 | ||
| 326 | 326 | <!-- YAML | |
| 327 | 327 | added: | |
@@ -343,10 +343,10 @@ added: | |||
| 343 | 343 | arguments (between zero and [`SQLITE_MAX_FUNCTION_ARG`][]). If `false`, | |
| 344 | 344 | `function` must be invoked with exactly `function.length` arguments. | |
| 345 | 345 | **Default:** `false`. | |
| 346 | - * `function` {Function} The JavaScript function to call when the SQLite | ||
| 347 | - function is invoked. The return value of this function should be a valid | ||
| 348 | - SQLite data type: see [Type conversion between JavaScript and SQLite][]. | ||
| 349 | - The result defaults to `NULL` if the return value is `undefined`. | ||
| 346 | + * `fn` {Function} The JavaScript function to call when the SQLite function is | ||
| 347 | + invoked. The return value of this function should be a valid SQLite data type: | ||
| 348 | + see [Type conversion between JavaScript and SQLite][]. The result defaults to | ||
| 349 | + `NULL` if the return value is `undefined`. | ||
| 350 | 350 | ||
| 351 | 351 | This method is used to create SQLite user-defined functions. This method is a | |
| 352 | 352 | wrapper around [`sqlite3_create_function_v2()`][]. | |
| Back | FazBrowse Home | New Git URL |
0 commit comments