sqlite3 api add bind_text and bind_blob

This commit is contained in:
danawan
2025-08-10 18:20:52 +07:00
parent efd6fde389
commit f450524ddb
4 changed files with 592 additions and 22 deletions

View File

@@ -41,6 +41,10 @@
#define SQLITE_CHECKPOINT_TRUNCATE 3
typedef void (*sqlite3_destructor_type)(void*);
#define SQLITE_STATIC ((sqlite3_destructor_type)0)
#define SQLITE_TRANSIENT ((sqlite3_destructor_type)-1)
typedef struct sqlite3 sqlite3;
typedef struct sqlite3_stmt sqlite3_stmt;