Access Violation at TOracleDataSet.Open() method

Sudheer B

Member²
Hi,
we have a query like below.
select plsqlapi.function1(param1,param2) from dual;

function1 returns a string.

when we open the query we are getting an access violation.

can you please help us to find it?

Direct Oracle Access 4.1.1.0
Delphi 10.1 Berlin
Oracle 19c
 
Can you check if the max_string_size parameter for this database is set to extended? The TOracleDataSet is not compatible with extended string data.
 
We've just ecountered the same behavior...
Delphi 10.2, DOA 4.1.3, Oracle RDBMS 21, Oracle Client 19.
The query is executed correctly (you can see with Oracle Monitor), but something wrong happens internally in delphi when the records are read into the dataset.
It happens quite randomly, only some query...(but still the same, without nothing particular).
We were forced to use Oracle Client 11 / 12 to solve the problem.
 
Back
Top