UNPKG

980 BMarkdownView Raw
1# any-db-sqlite3
2
3[![Build Status](https://secure.travis-ci.org/grncdr/node-any-db-sqlite3.png)](http://travis-ci.org/grncdr/node-any-db-sqlite3)
4
5This is the sqlite3 adapter for Any-DB. It relies on the [sqlite3][sqlite3]
6database driver to create [Connection][] and [Query][] objects that conform to
7the [Any-DB API][].
8
9## API extensions
10
11You can include any of the SQLite3 mode flags as query parameters in your database
12URL. So if you wanted to open your database in read-only mode for example, just
13append `?OPEN_READONLY` to the URL. The available flags are documented in this
14[SQLite3 wiki page](https://github.com/developmentseed/node-sqlite3/wiki/API).
15
16## Install
17
18 npm install any-db-sqlite3
19
20## License
21
22MIT
23
24[sqlite3]: http://github.com/owner/node-sqlite3
25[Connection]: https://github.com/grncdr/node-any-db-adapter-spec#connection
26[Query]: https://github.com/grncdr/node-any-db-adapter-spec#query
27[Any-DB API]: https://github.com/grncdr/node-any-db-adapter-spec