Hello,
I'm working with DOA 3.4.6.4, in Delphi 7, and Oracle 9i (9.2.0.1.0) Database.
My application have to edit a table like the following :
CREATE TABLE SERVICE_LEVEL (
LEVEL NUMBER,
DESCRIPTION VARCHAR2(50),
DURATION INTERVAL DAY(2) TO SECOND(0));
When I insert a new record, everything works just fine, but when I try to edit any filed of a record from this table, I get the following error message :
ORA-01406 fetched column value was truncated
I've tried to use TO_CHAR(DURATION) on the SQL statement, but I still have the same problem.
Does DOA have any support to INTERVAL fields at all? Or just to TIMESTAMP?
Anyone can help?
Thanks, Cezar
I'm working with DOA 3.4.6.4, in Delphi 7, and Oracle 9i (9.2.0.1.0) Database.
My application have to edit a table like the following :
CREATE TABLE SERVICE_LEVEL (
LEVEL NUMBER,
DESCRIPTION VARCHAR2(50),
DURATION INTERVAL DAY(2) TO SECOND(0));
When I insert a new record, everything works just fine, but when I try to edit any filed of a record from this table, I get the following error message :
ORA-01406 fetched column value was truncated
I've tried to use TO_CHAR(DURATION) on the SQL statement, but I still have the same problem.
Does DOA have any support to INTERVAL fields at all? Or just to TIMESTAMP?
Anyone can help?
Thanks, Cezar