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
    def __init__(self):
        ConnectDB.__init__(self, UMITDB)
        InventoryRetrieve.__init__(self, self.conn, self.cursor)

        self.invdata = None
        self.database_stat = None
Beispiel #3
0
 def __init__(self, conn, cursor):
     InventoryRetrieve.__init__(self, conn, cursor)
Beispiel #4
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):
        ConnectDB.__init__(self, UMITDB)
        InventoryRetrieve.__init__(self, self.conn, self.cursor)

        self.invdata = None
        self.database_stat = None
 def __init__(self, conn, cursor):
     InventoryRetrieve.__init__(self, conn, cursor)
 def __init__(self, database):
     ConnectDB.__init__(self, database)
     InventoryRetrieve.__init__(self, self.conn, self.cursor)
     RawStore.__init__(self, self.conn, self.cursor)