diff options
| author | 2022-04-17 01:53:26 +0200 | |
|---|---|---|
| committer | 2022-04-17 01:53:26 +0200 | |
| commit | 272cbe7ea5916586ee0ac899cae5e3b7e284cb0f (patch) | |
| tree | 3e40a60ca24397d1b20c5118bdf48fd2013a73e6 | |
| parent | readme: fix formatting (diff) | |
| download | zig-sqlite-272cbe7ea5916586ee0ac899cae5e3b7e284cb0f.tar.gz zig-sqlite-272cbe7ea5916586ee0ac899cae5e3b7e284cb0f.tar.xz zig-sqlite-272cbe7ea5916586ee0ac899cae5e3b7e284cb0f.zip | |
readme: specify we're talking about _SQL_ functions
| -rw-r--r-- | README.md | 5 |
1 files changed, 3 insertions, 2 deletions
| @@ -54,6 +54,7 @@ For sqlite, you have options depending on your target: | |||
| 54 | 54 | ||
| 55 | * Preparing, executing statements | 55 | * Preparing, executing statements |
| 56 | * comptime checked bind parameters | 56 | * comptime checked bind parameters |
| 57 | * user defined SQL functions | ||
| 57 | 58 | ||
| 58 | # Installation | 59 | # Installation |
| 59 | 60 | ||
| @@ -536,9 +537,9 @@ const rows = try stmt.all(usize, .{}, .{ | |||
| 536 | _ = rows; | 537 | _ = rows; |
| 537 | ``` | 538 | ``` |
| 538 | 539 | ||
| 539 | # User defined functions | 540 | # User defined SQL functions |
| 540 | 541 | ||
| 541 | sqlite supports [user-defined functions](https://www.sqlite.org/c3ref/create_function.html) which come in two types: | 542 | sqlite supports [user-defined SQL functions](https://www.sqlite.org/c3ref/create_function.html) which come in two types: |
| 542 | * scalar functions | 543 | * scalar functions |
| 543 | * aggregate functions | 544 | * aggregate functions |
| 544 | 545 | ||