I am trying to use the ApplyUpdates method for a TpFIBDatabase in
C++Builder but I can't seem to succeed. Since
dbMain->ApplyUpdates([qryTable1]) is not a correct syntax in C++, I
tried using the following method:
dbMain->ApplyUpdates(OPENARRAY(TpFIBDataSet*, (qryTable1)));
Still, I get an error using this: "Cannot convert
'OpenArray<TpFIBDataSet *>' to 'const TDataSet * *'".
Any ideas how I can make it work?
Thx.