address boundary error not my beloved
This commit is contained in:
@@ -1,9 +1,31 @@
|
||||
#include <groundext.h>
|
||||
#include <sqlite3.h>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
|
||||
sqlite3* getDB(List args) {
|
||||
return (sqlite3*)args.values[0].data.intVal;
|
||||
}
|
||||
|
||||
GroundValue exec_sql(GroundScope* scope, List args) {
|
||||
printf("hi\n");
|
||||
sqlite3* DB = getDB(args);
|
||||
printf("got db\n");
|
||||
char* sqlCode = args.values[1].data.stringVal;
|
||||
printf("%s\n", sqlCode);
|
||||
|
||||
char* errMessage;
|
||||
int exitCode = sqlite3_exec(DB, sqlCode, NULL, 0, &errMessage);
|
||||
|
||||
if (exitCode != SQLITE_OK) {
|
||||
ERROR(errMessage, "SQLite3Error");
|
||||
} else {
|
||||
return groundCreateValue(INT, 0);
|
||||
}
|
||||
}
|
||||
|
||||
GroundValue close_db(GroundScope* scope, List args) {
|
||||
sqlite3* DB = (sqlite3*)args.values[0].data.intVal;
|
||||
sqlite3* DB = getDB(args);
|
||||
sqlite3_close(DB);
|
||||
return groundCreateValue(INT, 0);
|
||||
}
|
||||
@@ -24,4 +46,5 @@ GroundValue open_db(GroundScope* scope, List args) {
|
||||
void ground_init(GroundScope* scope) {
|
||||
groundAddNativeFunction(scope, "sqlite3_Open", open_db, INT, 1, STRING, "dbPath");
|
||||
groundAddNativeFunction(scope, "sqlite3_Close", close_db, INT, 1, INT, "db");
|
||||
groundAddNativeFunction(scope, "sqlite3_Exec", exec_sql, INT, 2, INT, "db", STRING, "sql");
|
||||
}
|
||||
Reference in New Issue
Block a user