Search

Converting JSON to Sqlite in C
I am trying to create a program that downloads a JSON file and I'm trying to convert it to sqlite.
Why?:
- I believe the training data on Deepdanbooru is weak compaired to Rule34 or Gelbooru. I have tried compiling the C# for linux, but I decided it was too hard.
I am a mainly a Web developer who uses basic JS/HTML/CSS. These don't help as I need it to be in C. (Not ++/#). I have tried using AI to assist, but no matter what language I use (Python, Ruby, Java, C), It will fail.
Here is the closest I gotten ( 〔〕 --> ><:
undefined
#include 〔stdio.h〕 #include 〔stdlib.h〕 #include 〔string.h〕 #include 〔curl/curl.h〕 #include "cJSON.h" #include "sqlite3.h" #define URL "https://danbooru.donmai.us/posts.json?page=1&limit=1000&tags=duck&json=1" #define DB_NAME "data.db" static int callback(void *NotUsed, int argc, char **argv, char **azColName) { int i; for (i = 0; i < argc; i++) { printf("%s = %s\n", azColName[i], argv[i] ? argv[i] : "NULL"); } printf(