Mercurial
comparison deita/README.md @ 195:f8f5004a920a
Merging back hg-web-tip
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Tue, 27 Jan 2026 06:51:44 -0800 |
| parents | b818a4561a3c |
| children |
comparison
equal
deleted
inserted
replaced
| 189:14cc84ba35a0 | 195:f8f5004a920a |
|---|---|
| 1 # deita | |
| 2 | |
| 3 SQLite database wrapper library for C. | |
| 4 | |
| 5 ## Features | |
| 6 | |
| 7 - Connection management | |
| 8 - Query building and execution | |
| 9 - Result handling | |
| 10 | |
| 11 ## Files | |
| 12 | |
| 13 | File | Description | | |
| 14 |------|-------------| | |
| 15 | `deita.h` | Public API header | | |
| 16 | `deita_internal.h` | Internal declarations | | |
| 17 | `d_sqlite.c` | SQLite wrapper implementation | | |
| 18 | `d_connection.c` | Connection handling | | |
| 19 | `d_query.c` | Query execution | | |
| 20 | `deita_test.c` | Unit tests | | |
| 21 | |
| 22 ## Usage | |
| 23 | |
| 24 ```c | |
| 25 #include "deita/deita.h" | |
| 26 ``` | |
| 27 | |
| 28 ## Building | |
| 29 | |
| 30 ```bash | |
| 31 bazel build //deita:deita | |
| 32 bazel test //deita:deita_test | |
| 33 ``` |