Hi Marco,
I am trying to create a TOracleObjest with the help of following link
https://forums.allroundautomations.com/ubb/ubbthreads.php?ubb=showflat&Number=47875
but getting access violation at the time on create myObject.
MY delphi code:
var
i: Integer;
StringTable, INTTable : TOracleObject;
begin
MainDataModule.OracleQuery1.DeclareVariable('FP_ID', otObject);
MainDataModule.OracleQuery1.DeclareVariable('FP_STR', otObject);
StringTable := TOracleObject.Create(MainDataModule.OracleQuery1.Session, 'number_table_t', '');
INTTable := TOracleObject.Create(MainDataModule.OracleQuery1.Session, 'varchar_240_table_t', '');
Getting access violation at the time create StringTable in delphi.
---------------------------
Test_Collection
---------------------------
Access violation at address 00647E92 in module 'Test_Collection.exe'. Read of address 00000288.
---------------------------
OK
---------------------------