Page 1 of 1

Unknown data type assert error

Posted: Fri 22 Aug 2008 08:47
by miwi
Hi all,

I get an assert error message saying

Code: Select all

Unknown data type (113) (C:\Projects\Mig21\5.0\Test\DbBackendTest\dbexpoda\dbexp.pas, line 2131)
when I try to open a table that is constructed like this:

Code: Select all

CREATE OR REPLACE TYPE mytype as object
( ctime  interval day to second )
final;

CREATE TABLE TEST
( X  mytype );
Using 4.20.0.8, Oracle client 9.02. Thanks for any help.

miwi

Posted: Fri 22 Aug 2008 11:08
by Plash
DbxOda does not support INTERVAL data type.

Posted: Fri 22 Aug 2008 13:22
by miwi
Plash wrote:DbxOda does not support INTERVAL data type.
I see.

But wouldn't it be right to just return fldUKNKNOWN, giving the user the chance to see the rest of the columns?

However, I can fix it on my site. Thanks anyway.

miwi