summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2022-04-17 01:53:26 +0200
committerGravatar Vincent Rischmann2022-04-17 01:53:26 +0200
commit272cbe7ea5916586ee0ac899cae5e3b7e284cb0f (patch)
tree3e40a60ca24397d1b20c5118bdf48fd2013a73e6
parentreadme: fix formatting (diff)
downloadzig-sqlite-272cbe7ea5916586ee0ac899cae5e3b7e284cb0f.tar.gz
zig-sqlite-272cbe7ea5916586ee0ac899cae5e3b7e284cb0f.tar.xz
zig-sqlite-272cbe7ea5916586ee0ac899cae5e3b7e284cb0f.zip
readme: specify we're talking about _SQL_ functions
Diffstat (limited to '')
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index 1dbd5f1..ebb615a 100644
--- a/README.md
+++ b/README.md
@@ -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
541sqlite supports [user-defined functions](https://www.sqlite.org/c3ref/create_function.html) which come in two types: 542sqlite 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