Kamirus / purescript-selda

A type-safe, high-level SQL library for PureScript
MIT License
90 stars 3 forks source link

Query with placeholders and parameters #23

Closed Kamirus closed 5 years ago

Kamirus commented 5 years ago

Motivation: Allow some values created using lit function to be passed as a parameter to a query (right now every value created with lit ends up as a string)

TODO: Allow creating and executing queries with placeholders and corresponding (array of) parameters, which should be passed to the backend-specific query execution function.

Steps: