naftalmm
naftalmm
>`dontWrapJar` option implies that if the JAR changes, there's no need for the launch4j wrapper to change Actually, if the path to JAR file changes (this includes filename change), exe...
Dates in generated SQL are represented as `String`s in ISO format. DBMSs automatically convert them to respectful (`date`/`datetime`/`timestamp`) type during query execution. But `LocalDate.MAX.withDayOfMonth(1)` is bigger than the upper limit...
Hello! I've also thought about DB-specific DSLs recently. Let me share my opinion about suggested ideas since you're explicitly asking for it) **Dialect-specific submodules** The whole idea of ORM is...
>As you mention Exposed address DB specific features with common API, which is imho misleading, because some databases may not support that feature and exception may occur. Like using limit...
>I don't follow. My intention was DSL for query/update data not for DB DDL meaning migrations Yes, data migration is a completely separate task. I mean that apart from data...
Try placing one-jar into separate directory, so that it will not conflict with a project's jar (as created from the built-in Jar Gradle task). This could be done via [destinationDirectory](https://docs.gradle.org/current/dsl/org.gradle.api.tasks.bundling.Jar.html#org.gradle.api.tasks.bundling.Jar:destinationDirectory)...