ADO.NET之使用SqlConnection链接数据库

       在.net 页面中链接SQL Server 数据库有专门的连接数据库的类,也就是SqlConnection,其专门用来链接SQL Server 数据库。

相比较与OleDbConnection去连接数据库,用SqlConnection效率更高。

该类的创建方法如下:

SqlConnection conn = new SqlConnection(@"Data Source=.\SQLEXPRESS;Initial Catalog=Test; Integrated Security =True");

      解释一下字符串的含义,Data Source 指定数据库服务器的名称,Initial Catalog 指定数据库的名称,Test 为此例要连接的数据库名字,Integrated Security = True 的意思时采用Windows登陆方式登陆。如果采用SQLServer 的方式登陆,就换成uid用户名和pwd密码即可,链接字符串中每部分使用分号间隔。

你可能感兴趣的:(C#,asp.net)