C#使用SqlServer
【摘要】
//使用轻量级的SqlDataReader显示数据 //指定Sql Server提供者的连接字符串 string connString = "server=localhost;database =PGMM;uid =sa;pwd=yunfengAa"; ...
-
//使用轻量级的SqlDataReader显示数据
-
//指定Sql Server提供者的连接字符串
-
string connString = "server=localhost;database =PGMM;uid =sa;pwd=yunfengAa";
-
-
//建立连接对象
-
SqlConnection Sqlconn = new SqlConnection(connString);
-
//打开连接
-
Sqlconn.Open();
-
为上面的连接指定Command对象
-
//SqlCommand thiscommand = Sqlconn.CreateCommand();
-
//thiscommand.CommandText = "select customerID,companyName from customers";
-
-
为指定的command对象执行DataReader
-
//SqlDataReader thisSqlDataReader = thiscommand.ExecuteReader();
-
-
只要有数据
-
//while (thisSqlDataReader.Read())
-
//{
-
输出数据
-
// Console.WriteLine("\t{0}\t{1}", thisSqlDataReader["customerId"], thisSqlDataReader["companyName"]);
-
//}
-
关闭读取
-
//thisSqlDataReader.Close();
-
关闭连接
-
//Sqlconn.Close();
-
//Console.ReadLine();
-
//使用dataset显示数据
-
// 查询字符串
-
string thisCommand = "select * from t1";
-
-
//创建SqlDataAdapter对象,有两个参数,一个是查询字符串,一个是连接对象
-
SqlDataAdapter SqlDap = new SqlDataAdapter(thisCommand, Sqlconn);
-
-
//创建DataSet对象
-
-
DataSet thisDataset = new DataSet();
-
-
//使用SqlDataAdapter的Fill方法填充DataSet,有两个参数,一个是创建的DataSet实例,一个是填入的表
-
SqlDap.Fill(thisDataset, "customers");
-
//显示查询结果
-
-
foreach (DataRow theRow in thisDataset.Tables["customers"].Rows)
-
{
-
-
Response.Write(theRow["c1"] + "\t");
-
}
-
Sqlconn.Close();
-
-
Console.ReadLine();
文章来源: zzzili.blog.csdn.net,作者:清雨小竹,版权归原作者所有,如需转载,请联系作者。
原文链接:zzzili.blog.csdn.net/article/details/12647983
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)