Hi,
I have a table like this:
create table e_dpldr(s1 varchar2(4000), s2 varchar2(4000))
After calling GetDefaultColumns(True) and Prepare methods, MaxRows property is 64 (BufferSize is 65536, by default).
And when I call Load(64) method, my app hangs up.
If I change BufferSize to Maxint, MaxRows property becomes 1310 and Load(300) executes succesfully.
MaxRows seems to be less than 64 while BufferSize=65536.
How can I solve this hang up problem?
DOA 4.1.2, Delphi 2010, OraClient 9.2.0.1 & 9.2.0.8
Thanks.
I have a table like this:
create table e_dpldr(s1 varchar2(4000), s2 varchar2(4000))
After calling GetDefaultColumns(True) and Prepare methods, MaxRows property is 64 (BufferSize is 65536, by default).
And when I call Load(64) method, my app hangs up.
If I change BufferSize to Maxint, MaxRows property becomes 1310 and Load(300) executes succesfully.
MaxRows seems to be less than 64 while BufferSize=65536.
How can I solve this hang up problem?
DOA 4.1.2, Delphi 2010, OraClient 9.2.0.1 & 9.2.0.8
Thanks.