Press "Enter" to skip to content

Tag: .net

C#连接SQL Server代码

C#连接SQL Server程序代码:

[code lang=”vb”]
using System.Data;
using System.Data.SqlClient;
..

string str=”Server=YourSQLServer;user id=sa;password=;initial catalog=Northwind;Connect Timeout=30″;
SqlConnection objConnection=new SqlConnection(str);

objConnection.Open();
..
objConnection.Close();

解释:

C#连接SQL Server数据库的机制与连接Access的机制没有什么太大的区别,只是改变了Connection对象和连接字符串中的不同参数.

13 Comments