# SQLite

## Connection

```
$ sqlite3 database.db 
SQLite version 3.8.7.1 2014-10-29 13:59:56
Enter ".help" for usage hints.
```

## Query

```
sqlite> .tables
users
sqlite> select * from users;
admin|passwd
```
