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.