Dim list_of_commands As List
list_of_commands.Initialize
For i = 0 To 100 ' amout of commands to send
Dim cmd As DBCommand
cmd.Initialize
cmd.Name = "yourSQL" 'your nonQuery command name specified in config.properties
cmd.Parameters = Array( ) ' your parameters
list_of_commands.Add( cmd )
Next
Wait For ( yourRDCHandler.ExecuteBatch( list_of_commands , "") ) JobDone( j As HttpJob )
If j.Success Then
yourRDCHandler.HandleJobAsync(j, "req")
Wait For ( yourRDCHandler) req_Result ( result As DBResult )
Log ( result )
End If