add basic bind and column functions

This commit is contained in:
danawan
2025-08-07 20:20:23 +07:00
parent a1df9365a2
commit eaa614aa51
5 changed files with 611 additions and 31 deletions

View File

@@ -44,6 +44,8 @@
typedef struct sqlite3 sqlite3;
typedef struct sqlite3_stmt sqlite3_stmt;
typedef int64_t sqlite3_int64;
typedef sqlite3_int64 sqlite_int64;
typedef int (*exec_callback)(void *context, int n_column, char **argv, char **colv);