SQL Server连接字符串

Posted 有挫败才有成长

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL Server连接字符串相关的知识,希望对你有一定的参考价值。

//windows身份验证1
            //string strCon = @"Data Source=.\sqlexpress;Initial Catalog=db1;Integrated Security=True;Pooling=False";
            
            //windows身份验证2
            //string strCon = @"server=.\sqlexpress;database=db1;Integrated Security=True;";

            //Sql Server身份验证1
            //string strCon = @"server=.\sqlexpress;database=db1;uid=sa;pwd=123456";

            //Sql Server身份验证2
            //string strCon = @"Data Source=.\sqlexpress;Initial Catalog=db1;User ID=sa;Password=123456;Pooling=False";

            /*
             从配置文件中读连接字符串
             在<configuration>标记中加上
             <connectionStrings>
                <add name="strCon" connectionString="server=.\sqlexpress;database=db1;uid=sa;pwd=123456"/> 
             </connectionStrings>
            */
            string strCon = ConfigurationManager.ConnectionStrings["strCon"].ConnectionString;

 

以上是关于SQL Server连接字符串的主要内容,如果未能解决你的问题,请参考以下文章

sql数据库截取字符串函数

Microsoft SQL Server 代码片段收集

缺少 SQL SERVER 2014 代码片段

在 Rails 上为连接、限制、选择等(不是条件)的 SQL 片段安全地转义字符串

指定连接字符串的 SQL Server Compact 4.0 代码优先

在实体框架代码优先中,为啥我不能在连接字符串中使用 SQL Server Express?