Unknown data type assert error

Discussion of open issues, suggestions and bugs regarding usage of dbExpress drivers for Oracle in Delphi and C++Builder
Post Reply
miwi
Posts: 17
Joined: Thu 27 Jul 2006 10:42

Unknown data type assert error

Post by miwi » Fri 22 Aug 2008 08:47

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

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Fri 22 Aug 2008 11:08

DbxOda does not support INTERVAL data type.

miwi
Posts: 17
Joined: Thu 27 Jul 2006 10:42

Post by miwi » Fri 22 Aug 2008 13:22

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

Post Reply