webconfig连接串的使用与用代码写连接串的使用
2021-06-29 12:05
标签:nec 工具 strong cli 发布 using express uid pos 原文发布时间为:2008-07-25 —— 来源于本人的百度文章 [由搬家工具导入] 1、 在web.config中 或windows认证方式: 在调用时,加引用 SqlConnection myConnection = new SqlConnection(ConfigurationSettings.AppSettings["MyConn"]); 2、如果不使用webconfig中的连接串,上面这句更换为: 或windows认证方式: Oracle: webconfig连接串的使用与用代码写连接串的使用 标签:nec 工具 strong cli 发布 using express uid pos 原文地址:http://www.cnblogs.com/handboy/p/7141588.html
使用web.config中设置连接串
using System.Configuration;
using System.Data.SqlClient;
之后
SqlConnection myConnection = new SqlConnection("server=.\\SQLEXPRESS;database=MyTest;uid=sa;pwd=123456");
SqlConnection myConnection = new SqlConnection("Server=.\\SQLEXPRESS;database=MyTest;Integrated Security = True");
-------------------------------------------------------------------------------------
Access:
下一篇:.NET设计模式系列文章《转》
文章标题:webconfig连接串的使用与用代码写连接串的使用
文章链接:http://soscw.com/index.php/essay/99362.html