An open API service indexing awesome lists of open source software.

https://github.com/prust/sql-bricks-sqlite

Transparent, Schemaless SQL Generation for the SQLite dialect
https://github.com/prust/sql-bricks-sqlite

Last synced: 12 months ago
JSON representation

Transparent, Schemaless SQL Generation for the SQLite dialect

Awesome Lists containing this project

README

          

# SQLite dialect SQLBricks

Use:

```javascript
// in node:
var sql = require('sql-bricks-sqlite');
// in the browser:
var sql = SQLiteBricks;

var statement = sql.select().from('users').where({name: 'Fred Flintstone'});
```

Adds `limit()`, `offset()`, `orReplace()`, `orAbort()`, etc, to the core SQLBricks library. See http://csnw.github.io/sql-bricks for more information.