管道基础大数据平台系统开发-【CS】-ExportMap
13693261870
2024-01-26 f7f19e77f6872b3270cfdcead61d735c1e5c6ed8
JavaCode/cs/PostgreHelper.cs
@@ -15,9 +15,7 @@
    {
        langfang = 0,
        postgis = 1,
        postgres = 2
        etown = 1
    }
    /// <summary>
@@ -31,7 +29,16 @@
        public PostgreHelper(DbEnum db)
        {
            string str = ConfigurationManager.AppSettings["pgConn"];
            string str = null;
            switch (db)
            {
                case DbEnum.langfang:
                    str = ConfigurationManager.AppSettings["pgConn"];
                    break;
                case DbEnum.etown:
                    str = ConfigurationManager.AppSettings["etownConn"];
                    break;
            }
            this.conStr = string.Format(str, db.ToString());
        }