Beispiel #1
0
    def __init__(self, database, store_original=False):
        """
        store_original  -   stores xml files in the database or not
        """

        ConnectDB.__init__(self, database)
        InventoryRetrieve.__init__(self, self.conn, self.cursor)
        RawStore.__init__(self, self.conn, self.cursor)

        self.database = database
        self.store_original = store_original
Beispiel #2
0
 def __init__(self, database):
     ConnectDB.__init__(self, database)
     InventoryRetrieve.__init__(self, self.conn, self.cursor)
     RawStore.__init__(self, self.conn, self.cursor)
 def __init__(self, database):
     ConnectDB.__init__(self, database)
     InventoryRetrieve.__init__(self, self.conn, self.cursor)
     RawStore.__init__(self, self.conn, self.cursor)