summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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