diff options
Diffstat (limited to '')
| -rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
| @@ -543,10 +543,10 @@ sqlite supports [user-defined functions](https://www.sqlite.org/c3ref/create_fun | |||
| 543 | * aggregate functions | 543 | * aggregate functions |
| 544 | 544 | ||
| 545 | In both cases the arguments are [sqlite3\_values](https://www.sqlite.org/c3ref/value_blob.html) and are converted to Zig values using the following rules: | 545 | In both cases the arguments are [sqlite3\_values](https://www.sqlite.org/c3ref/value_blob.html) and are converted to Zig values using the following rules: |
| 546 | * TEXT values can be either `sqlite.Text` or `[]const u8` | 546 | * `TEXT` values can be either `sqlite.Text` or `[]const u8` |
| 547 | * BLOB values can be either `sqlite.Blob` or `[]const u8` | 547 | * `BLOB` values can be either `sqlite.Blob` or `[]const u8` |
| 548 | * INTEGER values can be any Zig integer | 548 | * `INTEGER` values can be any Zig integer |
| 549 | * REAL values can be any Zig float | 549 | * `REAL` values can be any Zig float |
| 550 | 550 | ||
| 551 | ## Scalar functions | 551 | ## Scalar functions |
| 552 | 552 | ||