From 0f47d16a2644851b1b1cc48cdd32408b1809505a Mon Sep 17 00:00:00 2001 From: Max Nullov Date: Sun, 9 Feb 2025 12:58:24 +0300 Subject: [PATCH] update readme --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index a2845f3..7860df5 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,16 @@ WIP online sqlite database managment system In future I want to make a RESTfull application which will allow easy database manipulation. +### Example endpoints + +`GET:localhost/table_name/column_name/` - will provide json of objects inside column +`GET:localhost/table_name/column_name/id` - will provide json object specific to this id + +`POST:localhost/` - will allow execute global query to database. For example creating new table. +`POST:localhost/table_name` - will allow execute query on specific table. For example add new field. + +### Manifest of goals + API **will** provide endpoint for each table and table column inside database. API **will** allow execute any SQL query.