您好,登录后才能下订单哦!
本篇文章给大家分享的是有关使用C#怎么连接SQL Server,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
1. Provider 参数
Provider 参数用来指定要连接数据源的种类。如果使用的是 SQL Server Data Provider,则不需要指定 Provider 参数,因为 SQL Server Data Provider 已经指定了所要连接的数据源是 SQL Server 服务器。如果要使用的是 OLE DB Provider 或其他连接数据库,则必须指定 Provider 参数
2. Server 参数
Server 参数用来指定需要连接的数据库服务器(或数据域)。例如,Server=(local)
指定连接的数据库服务器是本地的。另外,如果连接的是远端的数据库服务器,则 Server 参数可以写成 Server=IP
或 Server="远程计算机名"的形式。Server 参数也可以写成Data Source
,如:Data Source=IP
。例如:
server=(local); Initial Catalog=student; user Id=sa; password=; Data source=(local); Initial Catalog=student; user Id=sa; password=;
3. DataBase 参数
DataBase 参数用来指定连接数据库名,如:DataBase=Master
,说明连接的数据库是 Master。DataBase 参数也可以写成 Initial catalog,如:Initial catalog=Master
。
4. Uid 参数和 Pwd 参数
Uid 参数用来指定登录数据源的用户名,也可以写成 user ID
Pwd 参数用来指定连接数据库的密码,也可以写成 password
5. Connect Timeout 参数
Connect Timeout 参数用于指定打开数据库时的最大等待时间,单位是秒。如果不设置此参数,则默认为15秒。如果设置成-1,表示无限等待
6. Integrated Security 参数
Integrated Security 参数用来说明登录到数据源时是否使用SQL Server的集成安全验证。如果为 True,则使用 Windows 身份验证模式
Data Source=(local); Initial catalog=student; Integrated Security=SSPI;
下面是一个代码实例:
private void BindStudent() { // strCon 为连接字符串 string strCon = @"data source=(local);initial catalog=DRUGS;integrated security=true"; using (SqlConnection con = new SqlConnection(strCon)) { con.Open(); if (con.State == ConnectionState.Open) { string strCmd = "select * from alldrugs"; SqlDataAdapter da = new SqlDataAdapter(strCmd, strCon); //创建一个dataset接收da申请下来的数据 DataSet ds = new DataSet(); da.Fill(ds); //创建三个空的table,分别接收ds中的0-29,30-59,60-89条数据 DataTable table1 = new DataTable(); DataTable table2 = new DataTable(); DataTable table3 = new DataTable(); table1 = ds.Tables[0].Clone();//克隆表的结构传递给table1 table2 = ds.Tables[0].Clone();//克隆表的结构传递给table2 table3 = ds.Tables[0].Clone();//克隆表的结构传递给table3 for (int i = 0; i < 90; i++) { DataRow dr = ds.Tables[0].Rows[i]; if (i < 30) { table1.Rows.Add(dr.ItemArray); } else if (i >= 30 && i < 60) { table2.Rows.Add(dr.ItemArray); } else if (i >= 60 && i < 90) { table3.Rows.Add(dr.ItemArray); } else { break; } } this.Repeater1.DataSource = table1; this.Repeater1.DataBind(); this.Repeater2.DataSource = table2; this.Repeater2.DataBind(); this.Repeater3.DataSource = table3; this.Repeater3.DataBind(); } } }
别忘了在使用 SqlConnection 之前要导入命名空间
using System.Data; using System.Data.SqlClient;
以上就是使用C#怎么连接SQL Server,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。