diff options
| -rw-r--r-- | README.md | 2 |
1 files changed, 2 insertions, 0 deletions
| @@ -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 | ||
| 128 | Note 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 | ||
| 130 | Prepared statements contain _comptime_ metadata which is used to validate that every call to `exec`, `one` and `all` provides the appropriate number of bind parameters. | 132 | Prepared statements contain _comptime_ metadata which is used to validate that every call to `exec`, `one` and `all` provides the appropriate number of bind parameters. |