I found the following delphi Code
Code: Select all
var
IBCArray : TIBCArray;
ibcqry1.sql := SELECT myarray from mytable where mykey=keyvalue
ibcqry1.options.CacheArrays := false;
ibcqry1.open;
IBCArray := ibcqry1.GetArray('myarray' );
IBCArray.cached:= false;
IBCArray.SetItemAsFloat([46],365.34);
ibcqry1.close;
When I try to get the array with "new" the result is the following error
E2285 Keine Übereinstimmung für 'TIBCArray::TIBCArray()' gefunden
Whats wrong?