*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/1fb0f1f9-b850-46ab-8b8e-a8f4c079e814n%40googlegroups.com.

Reply via email to