using System; using System.Collections.Generic; using System.Text; namespace Pub_Class { class ClsSqlHelperMaster : ClsSqlHelper { public ClsSqlHelperMaster() { sServer = ClsIni.ReadIni("Erp", "Server", ClsPub.AppPath + @"\" + "HXErp.ini"); sDataBase = "master"; sUser = ClsIni.ReadIni("Erp", "UserName", ClsPub.AppPath + @"\" + "HXErp.ini"); sPassword = ClsIni.ReadIni("Erp", "PassWord", ClsPub.AppPath + @"\" + "HXErp.ini"); } } }