为了账号安全,请及时绑定邮箱和手机立即绑定

取得connectionStrings属性

标签:
Java

取得Web config文件连接数据库字符各个属性。

代码

 public string GetConnectionValue(string Keyword,string connectionString)
        {
            string[] aa = Keyword.Split(',');           
            string[] bb = connectionString.Split(';');
            string strTempValue = string.Empty;
            foreach (string b in bb)
            {
                foreach (string a in aa)
                {
                    if (b.IndexOf("=") < 0) continue;  
                    if (b.StartsWith(a, StringComparison.OrdinalIgnoreCase))
                        strTempValue = b.Substring(b.IndexOf("=") + 1);
                }
            }
            return strTempValue;
        }

 

代码

        public string GetServerName()
        {
            string key = "Data Source,Server,Address,Addr,Network Address";
            return GetConnectionValue(key);
        }

        public string GetDataBaseName()
        {
            string key = "Initial Catalog,Database";
            return GetConnectionValue(key);
        }

        public string GetPassword()
        {
            string key = "Password,Pwd";
            return GetConnectionValue(key);
        }

        public string GetUserId()
        {
            string key = "User ID,uid";
            return GetConnectionValue(key);
        }

        public string GetPacketSize()
        {
            string key = "Packet Size";
            return GetConnectionValue(key);
        }

        public string GetPooling()
        {
            string key = "Pooling";
            return GetConnectionValue(key);
        }

        public string GetMaxPoolSize()
        {
            string key = "Max Pool Size";
            return GetConnectionValue(key);
        }

        public string GetTrustedSecurity()
        {
            string key = "Integrated Security,Trusted_Connection";
            return GetConnectionValue(key);
        }

        public bool IsTrustedSecurityConnection()
        {
            string sScty = GetTrustedSecurity();
            return (sScty == "SSPI" || sScty == "True");
        }

        public bool IsAtLocalMachine()
        {
            string sName = GetServerName();
            return (sName == "127.0.0.1" || sName == "localhost");
        }

 

 

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消