22
22
def execute(self, query, vars=None, async=0):
25
25
self.__query_executed = 1
26
26
return _cursor.execute(self, query, vars, async)
30
30
for i in range(len(self.description)):
31
31
self.index[self.description[i][0]] = i
34
36
if self.__query_executed:
38
40
def fetchmany(self, size=None):
39
42
if self.__query_executed:
44
48
if self.__query_executed:
49
53
"""A row object that allow by-colun-name access to data."""