Takes the SQLQuery object and returns query string and parameters.
(self, sql_query)
| 760 | return out |
| 761 | |
| 762 | def _process_query(self, sql_query): |
| 763 | """Takes the SQLQuery object and returns query string and parameters.""" |
| 764 | paramstyle = getattr(self, "paramstyle", "pyformat") |
| 765 | query = sql_query.query(paramstyle) |
| 766 | params = sql_query.values() |
| 767 | return query, params |
| 768 | |
| 769 | def _where(self, where, vars): |
| 770 | if isinstance(where, int): |
no test coverage detected