Beispiel #1
0
 def __init__(self, fileName):
     
     self.fileName = fileName
     
     Dbconnection = DbConnection(self.fileName)
     self.connection = Dbconnection.connectDb()
     self.db = DbConnection(self.fileName)
            
     Dbinfoset = Dbinfo(self.connection)
     self.rules = Dbinfoset.ctcaeRuleTable() # store the ctcae rule information in this object
     self.para = Dbinfoset.ctcaeParaTable() # store the ctcae parameter information in this object
     self.units = Dbinfoset.ctcaeUnitTable() # store the ctcae units information in this object
     self.alias = Dbinfoset.ctcaeAliaTable() # store the ctcae alias information in this object
     self.unittrans = Dbinfoset.ctcaeUnitTransfer() # store the ctcae mu information in this object
    def __init__(self, fileName):

        self.fileName = fileName

        Dbconnection = DbConnection(self.fileName)
        self.connection = Dbconnection.connectDb()