In this case, there is a conflict with documentation. DeleteCurrentRow(true,true) will mark the current record as deleted.
From StrataFrame Documentation
"DeleteCurrentRow() When this overload is called, the record being deleted is immediately removed from the server and the internal data table is updated."
As I understand, It is not used this way. If I call this method between TransactionBegin and TransactionCommit statements, It is executed outside the transaction.
I've seen that Overload method does not exist.
What should I do ? If I use QueryInformation class for delete ,How can I execute this instance of QueryInformation. ?
We know that FillDataTable gets QueryInformation as parameter for fill queries. But What about Delete,update,Insert Queries ?