From 95b4191b1f46b9dabde8c4bb0525e0aac69816cb Mon Sep 17 00:00:00 2001 From: manuelkamp <48356947+manuelkamp@users.noreply.github.com> Date: Sun, 14 Apr 2019 11:04:29 +0200 Subject: [PATCH] Update README.md --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5a0d737..5f2c1e0 100644 --- a/README.md +++ b/README.md @@ -1 +1,14 @@ -# Mk0.Tools.SQLiteTools \ No newline at end of file +# Mk0.Tools.SQLiteTools +(C) 2019 mk0.at + +Connect to SQLite DB +Usage: SQLiteConnection sql; sql.SQLiteConnect(fileName); + +Disconnect from SQLite DB +Usage: sql.SQLiteDisconnect(); + +Disconnect from SQLite DB with VACCUM before disconnection +Usage: sql.SQLiteDisconnect(true); + +Execute Query in SQLite DB (all but INSERTs) +Usage: sql.SQLiteExecute("query");