|
Batch Delete is used to delete multiple records from the textbase in one pass.
To use batch delete, in your script function, specify an AC value of
BATCH_DELETE: |
||
|
function batchDelete(){ strXmlInput = '<?xml version="1.0" ?>\n' + |
||
|
|
||
|
'<QY>FIND Name = Porsche</QY>\n' + |
||
|
|
||
|
'</Query>\n'; return strXmlInput; } |
||
|
There is an example of this function (buildWpQueryForBatchDelete() ) in XmlToWpp.ASP. |
||