diff options
| author | 2021-01-05 21:49:27 +0100 | |
|---|---|---|
| committer | 2021-01-05 21:49:27 +0100 | |
| commit | 1efd03eea61c0c61f3ca15b959d9923d1c018894 (patch) | |
| tree | e7d4606d63f73d032d61855dcdb7ae73d9c06a40 /README.md | |
| parent | fix readme (diff) | |
| download | zig-sqlite-1efd03eea61c0c61f3ca15b959d9923d1c018894.tar.gz zig-sqlite-1efd03eea61c0c61f3ca15b959d9923d1c018894.tar.xz zig-sqlite-1efd03eea61c0c61f3ca15b959d9923d1c018894.zip | |
fix typo in readme
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`. |