iterate while the query returns items
(self)
| 274 | self.__exc(chr(14), self.__id + chr(0) + value + chr(0) + datatype) |
| 275 | |
| 276 | def iter(self): |
| 277 | """iterate while the query returns items""" |
| 278 | self.__session.send(chr(4) + self.__id) |
| 279 | return self.__session.iter_receive() |
| 280 | |
| 281 | def execute(self): |
| 282 | """Execute the query and return the result""" |
nothing calls this directly
no test coverage detected