Type mismatch for field, expecting: WideString actual: Sting
Posted: Mon 20 Jul 2009 19:21
Hello,
I am using the latest ODAC version with Delphi 2009.
Oracle server: 10.1.0.2
Oracle client: 11.1.0.6
OraCall.OCIUnicode := True;
When I create the following table and try to do a "select *" from it in TSmartQueryEx, I get this error:
Type mismatch for field 'SIGNATURE', expecting: WideString actual: Sting
CREATE OR REPLACE TYPE type_with_raws AS OBJECT
( signature RAW(2000))
/
create table has_type_with_raws
(col1 type_with_raws);
select * from has_type_with_raws;
I am using the latest ODAC version with Delphi 2009.
Oracle server: 10.1.0.2
Oracle client: 11.1.0.6
OraCall.OCIUnicode := True;
When I create the following table and try to do a "select *" from it in TSmartQueryEx, I get this error:
Type mismatch for field 'SIGNATURE', expecting: WideString actual: Sting
CREATE OR REPLACE TYPE type_with_raws AS OBJECT
( signature RAW(2000))
/
create table has_type_with_raws
(col1 type_with_raws);
select * from has_type_with_raws;