Assertion Failure

Discussion of open issues, suggestions and bugs regarding usage of dbExpress drivers for Oracle in Delphi and C++Builder
Post Reply
Michel Moreira
Posts: 4
Joined: Tue 18 Dec 2007 14:49

Assertion Failure

Post by Michel Moreira » Thu 04 Dec 2008 19:46

Project raised exception class EAssertionFailed with message 'Unknown data type (112) (D:\Projects\Delphi\Dbx\Source\dbexp.pas, line 2147)'.

Code: Select all

CREATE TABLE TESTE
(
  CARAC CHAR(10),
  CARAC2 VARCHAR2(10),
  CARAC3 NVARCHAR2(10),
  NUMERO NUMBER,
  DATA1 DATE,
  LONGO LONG,
  RAOU RAW(10),
  ROUID ROWID,
  BBLOB BLOB,
  CCLOB CLOB,
  MCLOB NCLOB,
  ARQ BFILE,
  FFLOAT FLOAT,
  SMTP TIMESTAMP(6),
  SMTP2 TIMESTAMP(6) WITH TIME ZONE,
  SMTP3 TIMESTAMP(6) WITH LOCAL TIME ZONE,
  SMTP4 INTERVAL YEAR(2) TO MONTH,
  SMTP5 INTERVAL DAY(2) TO SECOND(6)
)

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

Post by Plash » Fri 05 Dec 2008 08:11

You get this error because INTERVAL data type is not supported by DbxOda.

Post Reply