Executes a DESCRIBE... query, fetching all rows
(self, cmd, args)
| 1679 | return self.__do_describe("describe", args) |
| 1680 | |
| 1681 | def __do_describe(self, cmd, args): |
| 1682 | """Executes a DESCRIBE... query, fetching all rows""" |
| 1683 | # original command should be overridden because the server cannot |
| 1684 | # recognize "desc" as a keyword. Thus, given command should be |
| 1685 | # replaced with "describe" here. |
| 1686 | return self._execute_stmt( |
| 1687 | self._build_query_string(self.last_leading_comment, cmd, args)) |
| 1688 | |
| 1689 | def __do_dml(self, orig_cmd, args): |
| 1690 | """Executes a DML query""" |
no test coverage detected