From 6e24b161889a902cad983d748afcd279d48aada5 Mon Sep 17 00:00:00 2001 From: kake26 Date: Sat, 14 Dec 2024 23:29:20 -0600 Subject: [PATCH] Reasme update --- README.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 787e9fd..7d408d5 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,25 @@ ## Work in progress -Works pretty well at current. Not 100%, but I'm managing to use the code in other projects just fine. Use at your own risk. +Works pretty well at current. Not 100%, but I'm managing to use the code in other projects just fine. Use at your own risk. ## What it does -Converts JSON to data in a SQLite database. Makes it way easier to search and manipulate. +Converts JSON to data in a SQLite database. Makes it way easier to search and manipulate. You are responsible for of course doing the seraches and what not yourself. + +## Database layout + +``` + +CREATE TABLE "json_data" ( + "id" INTEGER, + "key" TEXT, + "parent_key" INTEGER, + "type" TEXT, + "value" TEXT, + PRIMARY KEY("id") +); +``` + +## Notes + +You need to either use the blank database provide ore create your own off the SQL above. It currently doesn't auto generate it.