diff --git a/README.md b/README.md index e6c5905..d8ff78b 100644 --- a/README.md +++ b/README.md @@ -45,8 +45,19 @@ See [Appropriate Uses For SQLite](https://www.sqlite.org/whentouse.html) for mor ## Using the Library +Instead of 'import sqlite3', use: + + from supersqlite import sqlite3 + +This retains compatibility with the sqlite3 package, while adding the various +enhancements. + ### Connecting +Given the above import, connect to a sqlite database file using: + + conn = sqlite3.connect('foo.db') + ### Querying ### Remote Streaming over HTTP