Yields the last executed SQL query as a string.
(self)
| 524 | |
| 525 | @property |
| 526 | def query(self): |
| 527 | """ Yields the last executed SQL query as a string. |
| 528 | """ |
| 529 | return self._query |
| 530 | |
| 531 | def execute(self, SQL, commit=False): |
| 532 | """ Executes the given SQL query and return a list of rows. |