summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index 971c54c..84fb96c 100644
--- a/README.md
+++ b/README.md
@@ -125,6 +125,8 @@ Here are the rules for resultset rows:
125* `TEXT` can be read into any array of `u8` provided the data fits. 125* `TEXT` can be read into any array of `u8` provided the data fits.
126* `BLOB` follows the same rules as `TEXT`. 126* `BLOB` follows the same rules as `TEXT`.
127 127
128Note that arrays must have a sentinel because we need a way to communicate where the data actually stops in the array, so for example use `[200:0]u8` for a `TEXT` field.
129
128### Comptime checked statements 130### Comptime checked statements
129 131
130Prepared statements contain _comptime_ metadata which is used to validate that every call to `exec`, `one` and `all` provides the appropriate number of bind parameters. 132Prepared statements contain _comptime_ metadata which is used to validate that every call to `exec`, `one` and `all` provides the appropriate number of bind parameters.