Added SQLite support and updated the Handbook. (0.32.0)
This commit is contained in:
parent
3411a4d846
commit
9416ec3457
17 changed files with 631 additions and 388 deletions
10
src/vm.c
10
src/vm.c
|
|
@ -13,6 +13,10 @@
|
|||
#include "string.c"
|
||||
#include "pcsc.c"
|
||||
#include "jsonc.c"
|
||||
#ifdef FUN_WITH_SQLITE
|
||||
#include <sqlite3.h>
|
||||
#include "vm/sqlite/common.c"
|
||||
#endif
|
||||
#include "vm.h"
|
||||
#include "value.h"
|
||||
#include <stdio.h>
|
||||
|
|
@ -703,6 +707,12 @@ void vm_run(VM *vm, Bytecode *entry) {
|
|||
#include "vm/curl/post.c"
|
||||
#include "vm/curl/download.c"
|
||||
|
||||
/* SQLite ops */
|
||||
#include "vm/sqlite/open.c"
|
||||
#include "vm/sqlite/close.c"
|
||||
#include "vm/sqlite/exec.c"
|
||||
#include "vm/sqlite/query.c"
|
||||
|
||||
/* PCRE2 ops */
|
||||
#include "vm/pcre2/test.c"
|
||||
#include "vm/pcre2/match.c"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue