Clob field with Oracle 8i in ODAC Direct Mode

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
Eden0928
Posts: 62
Joined: Sun 22 Apr 2012 14:08

Clob field with Oracle 8i in ODAC Direct Mode

Post by Eden0928 » Tue 29 Mar 2016 03:01

My environment:
WinXP sp3, Delphi 5, ODAC 9.4.14 for Delphi 5

OraSession setting below:

Code: Select all

   OraSession1.Options.Net:=true;
   OraSession1.Options.Direct:=True;
   OraSession1.LoginPrompt:=false;
   OraSession1.ConnectString:= 'Direct=True;Server=’ + ServerIP + ’;Port=' + PORT +
   ';SID=' + SID  + ';
   User ID=' + UserID +';
   Password=' + PWD ;
   OraSession1.Server := ServerIP+ ':' + PORT + ':' + SID ;
and DataLanguage same Oracle in Object Inspector:
Image

I load clob field content in TRichEdit.

Image

Garbled in above, Correct in below.

Why?

MaximG
Devart Team
Posts: 1822
Joined: Mon 06 Jul 2015 11:34

Re: Clob field with Oracle 8i in ODAC Direct Mode

Post by MaximG » Tue 29 Mar 2016 12:20

Unfortunately, we have discontinued support for Delphi 5 for a long time. The oldest supported IDE version is Delphi 6. Try to reproduce the issue on the latest ODAC version 9.6.22

Post Reply