1.创建连接数据的链接字符串
string source="server=(local);"+"integrated
security=SSPI;"+"database=Northwind";
server=(local)表示要连接的服务器
integrated security=SSPI表示这个参数使用Windows
Authentication连接到数据库,最好在源代码中使用这个参数,而不是用户名和密码
database=Northwind表示要连接到数据库的实例,即要连接的数据库名称
2.连接到数据库
SqlConnection con=new SqlConnection(source);//建立连接
con.Open();//打开数据库
3.关闭数据库
con.Close();