vertx-jooq icon indicating copy to clipboard operation
vertx-jooq copied to clipboard

A jOOQ-CodeGenerator to create vertx-ified DAOs and POJOs.

Results 53 vertx-jooq issues
Sort by recently updated
recently updated
newest added

Bumps [postgresql](https://github.com/pgjdbc/pgjdbc) from 42.3.3 to 42.4.1. Release notes Sourced from postgresql's releases. 42.4.0 What's Changed Enhancement: Made TimestampUtils.utcTz static and renamed to UTC_TIMEZONE by @​svendiedrichsen in pgjdbc/pgjdbc#2519 fix: return correct...

dependencies

If enum contains a dash (`-`) it's converted to an underscore (`_`). E.g. enum value of 'my-type' becomes 'my_type'-Enum and thus returns 'my_type' on it's `toString()`/`name()` methods.

Bumps [mysql-connector-java](https://github.com/mysql/mysql-connector-j) from 8.0.25 to 8.0.28. Changelog Sourced from mysql-connector-java's changelog. Changelog https://dev.mysql.com/doc/relnotes/connector-j/8.0/en/ Version 8.0.29 Fix for Bug#21978230, COMMENT PARSING NOT PROPER IN PREPSTMT.EXECUTEBATCH(). Fix for Bug#81468 (23312764), MySQL server...

dependencies

It would be great if there would be a version of vertx-jooq that uses an [R2DBC](https://r2dbc.io/) API as the underlying implementation, that can be fully async and standardized, instead of...

Omitting unrecognized type DataType [ t=json; p=0; s=0; u="pg_catalog"."json"; j=null ] (org.jooq.JSON) Vertx pgclient supports json DataType out of the box. Example io.vertx.core.json.JsonObject o = row.getJsonObject("column name").

My stack is: Gradle, Kotlin, Vertx 4, Postgres. I do not plan to incorporate Java code for DAO/DTO objects. Is Vertx-Jooq useless for me? It looks like jOOQ supports Kotlin...

when I put the setting 'withRenderSchema' to false,it seems not working,the sql looks like [select 'tableA'.'fieldB' from 'tableA'] ,but what I want is [select 'fieldB' from 'tableA'] to let the...

Have problem - I build request with join to column that has columns with same name as core table column name. I used aliases, but Row model, has column name...

I am generating jOOQ DAOs using JPADatabase in my [example project](https://github.com/redhat-appdev-practice/vertx-openapi-jooq-multimodule) For some reason, when I try to create a new row/record using the DAO's `insertReturningPrimary` method, I get the...

In ReactiveRXGenericQueryExecutor the following method is creating a new instance once a new transaction is created: ` protected io.reactivex.functions.Function newInstance(SqlConnection conn) { return transaction -> new ReactiveRXGenericQueryExecutor(configuration(),conn,transaction); }` While the...