Skip to content

Commit

Permalink
Merge pull request #1 from rich-murphey/master
Browse files Browse the repository at this point in the history
add short description of import and connect
  • Loading branch information
AjayP13 committed Aug 27, 2019
2 parents 01e54bb + fec67ca commit d74da74
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Expand Up @@ -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
Expand Down

0 comments on commit d74da74

Please sign in to comment.