zio-sql
zio-sql copied to clipboard
Type-safe, composable SQL for ZIO applications
- add `show` method for statements - add tests on `show` for all sql dialects - add `show` info in README
https://dev.mysql.com/doc/refman/8.0/en/string-functions.html#operator_sounds-like
https://github.com/zio/zio-sql/issues/201
There are several compilation errors while using Dotty. Once they're fixed we'll be able to include Scala 3 check in build and Scala 3 release. To compile with Dotty run:...
As @marekklis pointed out in https://github.com/zio/zio-sql/pull/339, it appears that PostgreSQL can take an additional, optional parameter in `ltrim` and `rtrim` functions. Just adding these functions in PostgresModule might cause import...
Support INSERT without specifying columns `insertInto(table).values(data)` `data` would be tuple or a case class that contains all non optional columns of a table in the right order.
When running the tests from `sbt` with: ``` sbt test ``` some of the containers don't close after running the tests finish. Resulting in:  Perhaps there's a problem with...