We fetch BLOB-data from Oracle with DBP_LONGBUFFER etc. parameters.
It was working in 6.3. Update 1R, but after upgrading to 6.3.9 it is not working anymore.
All data is truncated at around 64k.
We have the usual settings for binary fetch:
Code: Select all
--At the beginning:
Call SqlSetParameterAll ( hSql, DBP_ORAUSELOB, TRUE, '', TRUE )
Call SqlSetParameterAll ( hSql, DBP_LONGBUFFER, 32*1024*1024, '', TRUE )
---and before execute:
Call SqlSetLongBindDatatype( 1, 23 )
Any ideas?