definition: |
executeMultipleTimes :: String -> [[SQLValue]] -> DBAction () executeMultipleTimes query values = mapM_ (execute query) values |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Executes a query multiple times with different SQLValues without a result --- @param query - The SQL Query as a String, might have '?' as placeholder --- @param values - A list of lists of SQLValues that replace the '?' --- placeholder (one list for every execution) --- @return A void result if every execution was successful, otherwise an --- Error (meaning at least one execution failed). As soon as one --- execution fails, the rest wont be executed. |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
executeMultipleTimes |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> [[SQLValue]] -> DBAction () |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |