Kamil Listopad
Kamil Listopad
The current implementation does not allow setting more than one cookie. Only one SetCookie header is allowed in response. Is this behaviour intended? Or am I missing something?
Example part of a query: ```purescript groupBy $ lit "" ``` results in a runtime error. `groupBy` should be used on column values only. Its type is `groupBy ∷ ∀...
Create a function `selectValues` that takes a record of `Col s a` expressions and creates `FullQuery s ...` such that: For a record `{ col1 :: Col s a1, ...,...
Implement `insert_`, `update`, `deleteFrom` in the module `Selda.SQLite3.Aff`
`insert` (as well as `insert_`) has a meaningless type for a user, thus it is hard to start using it. **motivation**: #40 has more background on this issue. ```purescript insert_...
Writing such queries often requires providing type signatures including type class constraints. The query below uses a combination of `selectFrom` and `query1` that require complicated constraints. The table row is...
Change the internal FFI query function in pg-client to return an object instead of an [array](https://github.com/rightfold/purescript-postgresql-client/blob/fd465da8ace8cecd15d04a5a1c3748700d0cf616/src/Database/PostgreSQL.js#L59). It would allow simpler parsing the output into the result record (e.g. use ReadForeign...
Columns SQL keyword names like `drop` or backend-specific `end` (for PG) may not work properly. PG should handle these names for queries without problems but insert/update/delete won't work properly. There...
- remove `litF` and merge it with `lit` - typeclass `Lit` should depend on the backend
[pg](https://www.npmjs.com/package/pg) returns the result of the COUT/MAX as String, because of potential precision loss. While other backends can return `Int` there (and losing some digits if the result does not...