diff options
| -rw-r--r-- | README.md | 3 |
1 files changed, 2 insertions, 1 deletions
| @@ -130,7 +130,8 @@ Here are the rules for bind parameters: | |||
| 130 | * any Zig `Int` or `ComptimeInt` is tread as a `INTEGER`. | 130 | * any Zig `Int` or `ComptimeInt` is tread as a `INTEGER`. |
| 131 | * any Zig `Float` or `ComptimeFloat` is treated as a `REAL`. | 131 | * any Zig `Float` or `ComptimeFloat` is treated as a `REAL`. |
| 132 | * `[]const u8`, `[]u8` or any array of `u8` is treated as a `TEXT`. | 132 | * `[]const u8`, `[]u8` or any array of `u8` is treated as a `TEXT`. |
| 133 | * The custom `sqlite.Bytes` type is treated as a `TEXT` or `BLOB`. | 133 | * The custom `sqlite.Blob` type is treated as a `BLOB`. |
| 134 | * The custom `sqlite.Text` type is treated as a `TEXT`. | ||
| 134 | 135 | ||
| 135 | Here are the rules for resultset rows: | 136 | Here are the rules for resultset rows: |
| 136 | * `INTEGER` can be read into any Zig `Int` provided the data fits. | 137 | * `INTEGER` can be read into any Zig `Int` provided the data fits. |