Example #1
0
 def __init__(self, tic_dat_factory):
     """
     Don't call this function explicitly. A SQLiteTicFactory will
     automatically be associated with the sql attribute of the parent
     TicDatFactory.
     :param tic_dat_factory:
     :return:
     """
     self.tic_dat_factory = tic_dat_factory
     self._duplicate_focused_tdf = create_duplicate_focused_tdf(tic_dat_factory)
     self._isFrozen = True
Example #2
0
 def __init__(self, tic_dat_factory):
     """
     Don't create this object explicitly. A MdbTicDatFactory will
     automatically be associated with the mdb attribute of the parent
     TicDatFactory.
     :param tic_dat_factory:
     :return:
     """
     self.tic_dat_factory = tic_dat_factory
     self._duplicate_focused_tdf = create_duplicate_focused_tdf(
         tic_dat_factory)
     self._isFrozen = True
Example #3
0
    def __init__(self, tic_dat_factory):
        """
        Don't create this object explicitly. A PostgresTicFactory will
        automatically be associated with the pgsql attribute of the parent
        TicDatFactory.

        :param tic_dat_factory:

        :return:
        """
        self._duplicate_focused_tdf = create_duplicate_focused_tdf(tic_dat_factory)
        super().__init__(tic_dat_factory)