Ejemplo n.º 1
0
 def __init__(self, conn, name=None):
     CommandCursor.__init__(self, conn, name=name)
Ejemplo n.º 2
0
 def __init__(self, conn, name=None):
     CommandCursor.__init__(self, conn, name=name)
     self.stmt = Statement('select')
Ejemplo n.º 3
0
 def __init__(self, conn, name=None):
     CommandCursor.__init__(self, conn, name=name)
Ejemplo n.º 4
0
 def __init__(self, conn, name=None):
     CommandCursor.__init__(self, conn, name=name)
     self.stmt = Statement('select')
Ejemplo n.º 5
0
 def commit(self):
     CommandCursor.commit(self)
Ejemplo n.º 6
0
 def fields(self, table=None):
     if table is None:
         table = self.stmt.table
     return CommandCursor.fields(self, table)
Ejemplo n.º 7
0
 def fields(self, table=None):
     """fields here uses the fact that the stmt
     object may have a table set."""
     if table is None:
         table = self.stmt.table
     return CommandCursor.fields(self, table)
Ejemplo n.º 8
0
 def fields(self, table=None):
     if table is None:
         table = self.stmt.table
     return CommandCursor.fields(self, table)
Ejemplo n.º 9
0
 def commit(self):
     CommandCursor.commit(self)