Example #1
0
 def db_list_rows(self, table, records=None, if_exists=False):
     return cmd.DbListCommand(self,
                              table,
                              records,
                              columns=None,
                              row=True,
                              if_exists=if_exists)
Example #2
0
 def db_list(self, table, records=None, columns=None, if_exists=False):
     return cmd.DbListCommand(self, table, records, columns, if_exists)