コード例 #1
0
ファイル: extras.py プロジェクト: fabioz/coev
 def next(self):
     if self._query_executed:
         self._build_index()
     res = _cursor.fetchone(self)
     if res is None:
         raise StopIteration()
     return res
コード例 #2
0
ファイル: extras.py プロジェクト: fabioz/coev
 def fetchone(self):
     if self._query_executed:
         self._build_index()
     return _cursor.fetchone(self)