I just installed the new version and tried to run my program.
Compiling and starting works now
But when I´m posting data into a table I get an ORA-03120 error. Because I did not change anything and only recompiled with the new version I´m quit sure this must be a problem within the ODACs
Structure of the table that is posted:
FIELD1 NUMBER NOT NULL ENABLE,
FIELD2 NUMBER NOT NULL ENABLE,
FIELD3 NUMBER NOT NULL ENABLE,
FIELD4 VARCHAR2(1500 BYTE) NOT NULL ENABLE,
FIELD5 VARCHAR2(240 BYTE) NOT NULL ENABLE,
FIELD6 VARCHAR2(240 BYTE) NOT NULL ENABLE,
FIELD7 VARCHAR2(1500 BYTE) NOT NULL ENABLE,
FIELD8 NUMBER,
FIELD9 NUMBER,
FIELD10 NUMBER(1,0),
FIELD11 CLOB,
FIELD12 VARCHAR2(60 BYTE),
FIELD13 DATE,
FIELD14 DATE,
FIELD15 VARCHAR2(60 BYTE) DEFAULT USER NOT NULL ENABLE,
FIELD16 DATE DEFAULT SYSDATE NOT NULL ENABLE,
FIELD17 NUMBER(1,0),
FIELD18 VARCHAR2(60 BYTE) DEFAULT NULL,
FIELD19 DATE DEFAULT NULL,
FIELD20 CLOB,
CHECK (FIELD17 IN (NULL, 0, 1)) ENABLE,
PRIMARY KEY (FIELD1 )
Thanks in advance