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
- Host: GitHub
- URL: https://github.com/prust/sql-bricks-sqlite
- Owner: prust
- Created: 2014-09-20T15:03:29.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-11-01T16:18:23.000Z (over 3 years ago)
- Last Synced: 2025-04-21T22:02:50.635Z (about 1 year ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 8
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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.