diff options
| author | 2022-04-17 01:52:01 +0200 | |
|---|---|---|
| committer | 2022-04-17 01:52:01 +0200 | |
| commit | 1ab4caa6fa7a3d7c295c750031ee9ed029b18d9f (patch) | |
| tree | 9ea97b62212efb36f16653ef8115a0e4b9edf17b | |
| parent | Merge branch 'readme-toc' (diff) | |
| download | zig-sqlite-1ab4caa6fa7a3d7c295c750031ee9ed029b18d9f.tar.gz zig-sqlite-1ab4caa6fa7a3d7c295c750031ee9ed029b18d9f.tar.xz zig-sqlite-1ab4caa6fa7a3d7c295c750031ee9ed029b18d9f.zip | |
readme: fix formatting
| -rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
| @@ -543,10 +543,10 @@ sqlite supports [user-defined functions](https://www.sqlite.org/c3ref/create_fun | |||
| 543 | * aggregate functions | 543 | * aggregate functions |
| 544 | 544 | ||
| 545 | In both cases the arguments are [sqlite3\_values](https://www.sqlite.org/c3ref/value_blob.html) and are converted to Zig values using the following rules: | 545 | In both cases the arguments are [sqlite3\_values](https://www.sqlite.org/c3ref/value_blob.html) and are converted to Zig values using the following rules: |
| 546 | * TEXT values can be either `sqlite.Text` or `[]const u8` | 546 | * `TEXT` values can be either `sqlite.Text` or `[]const u8` |
| 547 | * BLOB values can be either `sqlite.Blob` or `[]const u8` | 547 | * `BLOB` values can be either `sqlite.Blob` or `[]const u8` |
| 548 | * INTEGER values can be any Zig integer | 548 | * `INTEGER` values can be any Zig integer |
| 549 | * REAL values can be any Zig float | 549 | * `REAL` values can be any Zig float |
| 550 | 550 | ||
| 551 | ## Scalar functions | 551 | ## Scalar functions |
| 552 | 552 | ||