diff options
Diffstat (limited to '')
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -272,7 +272,7 @@ while (true) { | |||
| 272 | Since sqlite doesn't have many [types](https://www.sqlite.org/datatype3.html) only a small number of Zig types are allowed in binding parameters and in resultset mapping types. | 272 | Since sqlite doesn't have many [types](https://www.sqlite.org/datatype3.html) only a small number of Zig types are allowed in binding parameters and in resultset mapping types. |
| 273 | 273 | ||
| 274 | Here are the rules for bind parameters: | 274 | Here are the rules for bind parameters: |
| 275 | * any Zig `Int` or `ComptimeInt` is tread as a `INTEGER`. | 275 | * any Zig `Int` or `ComptimeInt` is treated as a `INTEGER`. |
| 276 | * any Zig `Float` or `ComptimeFloat` is treated as a `REAL`. | 276 | * any Zig `Float` or `ComptimeFloat` is treated as a `REAL`. |
| 277 | * `[]const u8`, `[]u8` is treated as a `TEXT`. | 277 | * `[]const u8`, `[]u8` is treated as a `TEXT`. |
| 278 | * The custom `sqlite.Blob` type is treated as a `BLOB`. | 278 | * The custom `sqlite.Blob` type is treated as a `BLOB`. |