Kamil Listopad

Results 19 issues of 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 ∷ ∀...

bug

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, ...,...

good first issue
query-level

Implement `insert_`, `update`, `deleteFrom` in the module `Selda.SQLite3.Aff`

good first issue
sqlite3
backend-integration

`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_...

error message
backend-integration

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...

error message
add to guide
query-level
backend-integration

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...

error message
pg
backend-integration

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...

bug
query-level

- remove `litF` and merge it with `lit` - typeclass `Lit` should depend on the backend

pg
sqlite3
expression-level

[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...

pg
sqlite3
expression-level