squash
squash copied to clipboard
SQL access DSL for Kotlin
Do you have support or any plans to support Postgres array? https://www.postgresql.org/docs/9.1/static/arrays.html
Nice job, great project I have used Laravel framework and its database access layer is pretty much like Squash, But it has a migration tool built in to it, Which...
In the readme, there is ```kotlin object Citizens : TableDefinition() { val id = varchar("id", 10).primaryKey() val name = varchar("name", length = 50) val cityId = reference(Cities.id, "city_id").nullable() } ......
Like using https://github.com/gamlerhart/adbcj, or https://github.com/mauricio/postgresql-async. This is to support use of squash in event loop frameworks like Vert.x.
This project looks promising, but I can't help but notice the similarities to [JOOQ](https://www.jooq.org/). I personally think type-safe "SQL" (in your language of choice) is an underrated means of interacting...
Any change to get Timestamp column type support with for `ON CREATE` and `ON UPDATE` on squash?
Hi, I wanted to add a dialect specific join (Postgres' LATERAL - described [here](http://www.postgresonline.com/journal/archives/285-PostgreSQL-9.3-Lateral-Part2-The-Lateral-Left-Join.html) However org.jetbrains.squash.query.QueryCompound is a sealed class which prevents me from adding it. Is there some other...