C#连接SQL Server数据库
C#连接SQL Server数据库
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; namespace CSharpConnectSQL { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnCSharpConnectSQL_Click(object sender, EventArgs e) { string strConnection = "Server=localhost;"; strConnection += "initial catalog=Northwind;"; strConnection += "user id=sa;"; strConnection += "password=123;"; strConnection += "Connect Timeout=5"; bool canConnectSQL = false; using (SqlConnection objConnection = new SqlConnection(strConnection)) { try { objConnection.Open(); canConnectSQL = true; objConnection.Close(); } catch { } if (canConnectSQL) MessageBox.Show("数据库连接成功!", "Crazygolf Alert"); else { MessageBox.Show("数据库连接失败!", "Crazygolf Alert"); } } } } }请注意以下几点:
- Server属性值是数据库的地址,本地可使用localhost或者点(.),也可以键入IP地址。如需远程,应开通远程访问功能。
- initial catalog属性值是要连接的数据库的名称,这里用Northwind代替。
- user id和password无庸赘述。
- Connect Timeout属性值为连接超时时间。调用数据库Open()方法时,程序进入阻塞状态,期间根据我们写的连接字符串不断地打开数据库,如果网络不同或者Server等字段错误时,就会有延时甚至死机的风险,所以超时写小一点。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。