Home | History | Annotate | Download | only in bsddb

Lines Matching refs:__tablecolumns

272         self.__tablecolumns = {}
442 """initialize the self.__tablecolumns dict"""
451 self.__tablecolumns[table] = pickle.loads(tcolpickles)
491 if not table in self.__tablecolumns:
494 if not self.__tablecolumns[table].count(column):
591 columns = self.__tablecolumns[table]
634 if not table in self.__tablecolumns:
637 columns = self.__tablecolumns[table]
658 if not table in self.__tablecolumns:
663 if not self.__tablecolumns[table].count(column):
837 if table in self.__tablecolumns:
838 del self.__tablecolumns[table]