I downloaded the enterprise version, installed it in my local maven and tried to use it from gradle script so there is no other dependency
[email protected] schrieb am Dienstag, 10. November 2020 um 15:02:49 UTC+1: > Hi Patrick, > > Thanks for your message. > > There hasn't been any such fix in jOOQ 3.14.3. But I don't think we have > such a problem, currently. The most likely reason why you're seeing this > kind of compilation error is because you're generating code with jOOQ > version X and trying to compile it with an older jOOQ version Y. This can > happen, for example, due to a transitive dependency that you might be using > via Spring Boot or some other framework. If you're using Maven, please > check "mvn dependency:tree" to see the jOOQ version, see also: > > https://blog.jooq.org/2019/06/26/how-to-use-jooqs-commercial-distributions-with-spring-boot/ > > Thanks, > Lukas > > On Tue, Nov 10, 2020 at 2:58 PM Patrick Brunmayr <[email protected]> > wrote: > >> So it seems it got fixed in 3.14.3 ? >> >> Patrick Brunmayr schrieb am Dienstag, 10. November 2020 um 14:50:40 UTC+1: >> >>> *Following DDL given* >>> >>> CREATE TABLE API_CLIENT >>> ( >>> ID RAW(16) NOT NULL >>> , API_CONSUMER_ID RAW(16) NOT NULL >>> , APP_ID VARCHAR2(256 CHAR) NOT NULL >>> , ACTIVE NUMBER(*, 0) DEFAULT 1 NOT NULL >>> , LAST_MODIFIED TIMESTAMP(6) NOT NULL >>> , PRICING_DOMAIN VARCHAR2(256 CHAR) NOT NULL >>> , TRUSTED NUMBER(*, 0) DEFAULT 0 NOT NULL >>> , NAME VARCHAR2(128 CHAR) >>> , CREATED TIMESTAMP(6) NOT NULL >>> ) >>> >>> will create this field in the Table >>> >>> public final TableField<ApiClientRecord, LocalDateTime> CREATED = >>> createField(DSL.name("CREATED"), SQLDataType.LOCALDATETIME(6).nullable( >>> false), this, ""); >>> >>> *which leads to error* >>> >>> error: cannot find symbol >>> public final TableField<ApiClientRecord, LocalDateTime> >>> LAST_MODIFIED = createField(DSL.name("LAST_MODIFIED"), >>> SQLDataType.LOCALDATETIME(6).nullable(false), this, ""); >>> >>> ^ >>> symbol: method LOCALDATETIME(int) >>> location: class SQLDataType >>> >>> It seems there is no matching constructor with a precision. How to fix >>> this? >>> >>> -- >> You received this message because you are subscribed to the Google Groups >> "jOOQ User Group" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/jooq-user/58b1849d-a83f-4e05-baba-6ab0b550430an%40googlegroups.com >> >> <https://groups.google.com/d/msgid/jooq-user/58b1849d-a83f-4e05-baba-6ab0b550430an%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> > -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jooq-user/949e6042-6745-4e0f-bb7d-47df66f3013en%40googlegroups.com.
