Execute the given statement `count` times. Calls the provided callback on each execution for parameter binding. Assumes there will be no resulting row data.
- parameter statement: String statement to be executed
- parameter count: Int number of times to execute
- parameter doBindings: Block to be executed for binding on each call
- throws: ()
Executes the statement, calling `doBindings` to handle parameter bindings and calling `handleRow` for each resulting row.
- parameter statement: String statement to be executed
- parameter doBindings: Block to perform bindings on statement
- parameter handleRow: Block to execute for each row
- throws: ()