Example #1
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)
Example #2
0
 def fields(self, table=None):
     if table is None:
         table = self.stmt.table
     return CommandCursor.fields(self, table)
 def fields(self, table=None):
     if table is None:
         table = self.stmt.table
     return CommandCursor.fields(self, table)