Update README.md

This commit is contained in:
manuelkamp 2019-04-14 11:04:29 +02:00 committed by GitHub
parent 06e09cd8d8
commit 95b4191b1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 1 deletions

View File

@ -1 +1,14 @@
# Mk0.Tools.SQLiteTools
# 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");