Kazuhiro Sera
Kazuhiro Sera
@tototoshi Frankly, I myself don't have enough time to work on the implementation right now. If someone properly does a code contribution for it, I'd love to merge it and...
Adding a new method for non-numeric auto-increment PK retrieval since 2.4 or later can be an option.
If I remember correctly, supporting non-long type for generated keys is not so simple as it depends on underlying JDBC drivers' implementations (for instance, MySQL/MariaDB vs PostgreSQL). If someone has...
Hi @mantovani, you can use autoConstruct macro for this! http://scalikejdbc.org/documentation/auto-macros.html
Adding yet another type-unsafe DSL API which accepts `Any` values can be possible although we cannot use the natural name `set` for that. The naming is a bit difficult but...
Introducing `ParameterBinderFactory` into QueryDSL enables validating the parameters embedded into PreparedStatement in compile time. For example, simply embedding `case class Price` as `Any` causes a runtime error when issuing real...
Thanks for sharing this. The recommended way for performing queries with a particular isolation level is to use a `localTx` block. It works even when you do not run updates...
Thanks for the prompt reply. While I am open to supporting read-only transactions, I am not going to work on it in the short term. Actually, we got a request...
Thanks for the suggestion. Indeed, this may be useful for some!
You can configure the code generator by changing this: https://github.com/scalikejdbc/scalikejdbc/blob/3.3.5/scalikejdbc-mapper-generator-core/src/main/scala/scalikejdbc/mapper/GeneratorConfig.scala#L18