Esempio n. 1
0
    def commit(self):
        """
        Commits all chains that were created during the session

        :return
        """
        for table in self.__tables:
            table.commit()
Esempio n. 2
0
 def commit(self):
     """Commit changes to the tables."""
     for table in self.__tables:
         table.commit()
Esempio n. 3
0
	def commit(self):
		"""Commit changes to the tables."""
		for table in self.__tables: 
			table.commit()