Execute the query (not PL/SQL) and parse response
(self,query,ld=[],getColumnNames=False,stringOnly=False)
| 267 | return self.__execThisQuery__(query=request,ld=[],isquery=False) |
| 268 | |
| 269 | def __execQuery__(self,query,ld=[],getColumnNames=False,stringOnly=False): |
| 270 | ''' |
| 271 | Execute the query (not PL/SQL) and parse response |
| 272 | ''' |
| 273 | return self.__execThisQuery__(query=query, ld=ld, isquery=True,getColumnNames=getColumnNames,stringOnly=stringOnly) |
| 274 | |
| 275 | def __execProc__(self,proc,options=None): |
| 276 | ''' |
no test coverage detected