连接数据库通过配置文件app.config
ConfigurationManager类 public static class ConfigurationManager 命名空间: System.Configuration 程序集: System.Configuration(在 System.Configuration.dll 中) ConfigurationManager.AppSettings 属性 ConfigurationManager.ConnectionStrings 属性 获取当前应用程序默认配置的 ConnectionStringsSection 数据。 ConfigurationSettings 类 命名空间: System.Configuration 程序集: System(在 System.dll 中) 属性: AppSettings 已废弃不用。 ConfigurationSettings 类仅提供向后兼容性。 对于新的应用程序,应改为使用 ConfigurationManager 类 或 WebConfigurationManager 类。 若要使用这两个类, 必须在您的项目或应用程序中添加对 System.Configuration 命名空间的引用。 SqlConnection.ConnectionString 属性 获取或设置用于打开 SQL Server 数据库的字符串。 命名空间: System.Data.SqlClient 程序集: System.Data(在 System.Data.dll 中)
using System.Data.SqlClient; using System.Configuration; namespace WindowsFormsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { SqlConnection conn; string SqlStr = ConfigurationManager.ConnectionStrings["SqlConnString"].ConnectionString; conn = new SqlConnection(SqlStr);//实例化SqlConnection数据库连接对象 conn.Open();//打开数据库连接 if (conn.State == ConnectionState.Open)//判断连接是否打开 { label1.Text = "SQL Server数据库连接开启!"; } } } }
要加下面红线画的部分:
点击项目->添加新项->选择下图所示的项
文件内容如下:
app.config文件的内容:
<?xml version="1.0"?> <configuration> <connectionStrings> <add name="SqlConnString" connectionString="Server=localhost;DataBase=my;Uid=sa;Pwd=" providerName="System.Data.SqlClient" /> </connectionStrings> </configuration>
运行结果如下图:
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。