Chris de Kok

Results 15 comments of Chris de Kok

would be nice if they pull request can be done? something still missing from the definition file ?

@finnsson Yes that's exactly what i meant it would be super helpful if there is some binding for form's the link can be used as workaround but would also require...

This would be very nice, it would also be nice if this supported none string formats in the cases where you now need to do: `println!("{:?}", scores);` so it would...

You can use something like. ``` import org.jooq.codegen.GenerationTool import org.jooq.meta.jaxb.* import org.jooq.meta.jaxb.Target as JooqTarget import io.github.jklingsporn.vertx.jooq.shared.postgres.JSONBToJsonObjectConverter import io.vertx.core.json.JsonObject; buildscript { repositories { mavenLocal() mavenCentral() } dependencies { classpath("io.github.jklingsporn:vertx-jooq-generate:6.0.0") classpath("org.postgresql:postgresql:42.2.16") classpath("io.vertx:vertx-core:4.0.0")...

@zhangruiyu what error do you get? it should work, you do need to replace some of the parameters for your own project.

It's possible to use the java code from kotlin it's what I use now, but having data class and nullability support would be much nicer.

@petervanderdoes Is only the removal of colors preventing this from being merged?

In postgres it's `ON CONFLICT DO UPDATE` or `ON CONFLICT DO NOTHING` https://www.postgresql.org/docs/9.5/static/sql-insert.html

@pmjones I just looked at the code but I think this is for different functionality, in mysql it would be `ON DUPLICATE` https://dev.mysql.com/doc/refman/5.7/en/insert-on-duplicate.html replace causes a delete before insert which...

@pavarnos I could give it a shot, the one thing that would be hard is that with postgres you can specify the column or constraint on which the conflict occurs...