Home | History | Annotate | Download | only in bsddb

Lines Matching refs:matching_rowids

537             matching_rowids = self.__Select(table, [], conditions)
541 for rowid in matching_rowids.keys():
588 matching_rowids = self.__Select(table, [], conditions)
592 for rowid in matching_rowids.keys():
638 matching_rowids = self.__Select(table, columns, conditions)
645 return matching_rowids.values()
668 matching_rowids = {}
739 if not rowid in matching_rowids:
740 matching_rowids[rowid] = {}
742 matching_rowids[rowid][column] = data
744 if rowid in matching_rowids:
745 del matching_rowids[rowid]
763 for rowid, rowdata in matching_rowids.items():
780 return matching_rowids