TOraType: Unknown data type BINARY_DOUBLE
Posted: Wed 06 May 2009 14:45
Hi!
I have a problem with BINARY_DOUBLE attributes in Oracle object types.
Here is my object type:
And here is my very simple Delphi code:
If I try to create a TOraType in Delphi 2007 I get this error message:
Project Project1.exe raised exception class EAssertionFailed with message 'Unknown data type (OraObjects.pas, line 787)'.
Question:
Does this mean that BINARY_DOUBLE object attribute type is not supported by ODAC 6.80.0.46 ?
Thanks for any reply!
I have a problem with BINARY_DOUBLE attributes in Oracle object types.
Here is my object type:
Code: Select all
CREATE TYPE TEST AS OBJECT (
TESTATTR BINARY_DOUBLE
);Code: Select all
var
T: TOraType;
begin
T := TOraType.Create(OraSession1.OCISvcCtx, 'TEST');
end;Project Project1.exe raised exception class EAssertionFailed with message 'Unknown data type (OraObjects.pas, line 787)'.
Question:
Does this mean that BINARY_DOUBLE object attribute type is not supported by ODAC 6.80.0.46 ?
Thanks for any reply!