cleanup, docs

This commit is contained in:
root
2026-06-17 13:02:57 +00:00
parent b8b56cf3dd
commit 4eda629c8d
20 changed files with 24 additions and 50 deletions
-5
View File
@@ -13,11 +13,6 @@ sqlite_affected_rows
:content
Returns SQLite's last inserted rowid for the connection after an insert statement.
```cpp
sqlite_query(db, "insert into notes(body) values(:body)", params);
u64 id = sqlite_insert_id(db);
```
:example
SQLite* db = sqlite_connect("/tmp/doc-sqlite-insertid.db");
sqlite_query(db, "drop table if exists t");