(self)
| 150 | """Does nothing, required by DB API.""" |
| 151 | |
| 152 | def _get_db(self): |
| 153 | if self.connection is None or not dir(self.connection): |
| 154 | self.errorhandler(self, ProgrammingError, "cursor closed") |
| 155 | return self.connection |
| 156 | |
| 157 | def execute(self, query, args=None): |
| 158 |
no outgoing calls
no test coverage detected