Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/justinwoo/purescript-bingsu

Cool query building library for Node-SQLite3
https://github.com/justinwoo/purescript-bingsu

purescript sqlite

Last synced: 4 days ago
JSON representation

Cool query building library for Node-SQLite3

Awesome Lists containing this project

README

        

# PureScript-Bingsu

Cool query building library for [Node-SQLite3](https://github.com/justinwoo/purescript-node-sqlite3).

![](https://upload.wikimedia.org/wikipedia/commons/7/75/Patbingsu.jpg)

## Usage

See the tests.

```purs
someAff = void $ B.queryDB db insert { name: "apples", count: 3 }
where
insert
= B.literal "insert into mytable values ("
<<>> B.param (B.Param :: _ "name" String)
<<>> B.literal ","
<<>> B.param (B.Param :: _ "count" Int)
<<>> B.literal ")"
```