tacl query

usage: tacl query [-h] [-v] [-m] [-r RAM] -d DATABASE -q QUERY
                  [-p [PARAMETER ...]]

Run a query specified in a file using supplied parameters, outputting the
results as CSV.

options:
  -h, --help            show this help message and exit
  -v, --verbose         Display debug information; multiple -v options
                        increase the verbosity. (default: None)
  -m, --memory          Use RAM for temporary database storage.
                        
                        This may cause an out of memory error, in which case
                        run the command without this switch. (default: False)
  -r RAM, --ram RAM     Number of gigabytes of RAM to use. (default: 3)
  -d DATABASE, --db DATABASE
                        Path to database file. (default: None)
  -q QUERY, --query QUERY
                        Path to file containing the SQL query to run.
                        (default: None)
  -p [PARAMETER ...], --parameters [PARAMETER ...]
                        Parameters to be used in the query. (default: None)