private bool testWDMQueryName(out string msg, string connectString)
 {
     msg = "";
     if (this.AircTxt.Text == "" || !WDMIntegrationModule.testWDMDBConnection(connectString, this.AircTxt.Text))
     {
         msg = "WDM的型号特征不存在";
         return(false);
     }
     else
     {
         WDMIntegrationModule.setWDMDBQueryName("WDM_AIRC", this.AircTxt.Text);
     }
     if (this.OperTxt.Text == "" || !WDMIntegrationModule.testWDMDBConnection(connectString, this.OperTxt.Text))
     {
         msg = "WDM的质量特性不存在";
         return(false);
     }
     else
     {
         WDMIntegrationModule.setWDMDBQueryName("WDM_OPER", this.OperTxt.Text);
     }
     if (this.StmcTxt.Text == "" || !WDMIntegrationModule.testWDMDBConnection(connectString, this.StmcTxt.Text))
     {
         msg = "WDM的加载状态不存在";
         return(false);
     }
     else
     {
         WDMIntegrationModule.setWDMDBQueryName("WDM_STMC", this.StmcTxt.Text);
     }
     return(true);
 }