As a user, I would like to execute multiple SQLite commands at once which may include a mix of execution types (non-query, read, etc). Create a SQL parser to execute these commands individually and return the mixed results for consumption.
Acceptance
- Parse each command
- Execute command based upon the command type
- Return results to the user
- A: Dictionary<int, object>(indexOfCommand, resultData)
- B: Or, a custom class that specifies the object's data type - "String" or "DataTable"
- Optional switch to output the results in a debugger