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");