博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#使用SqlServer
阅读量:4972 次
发布时间:2019-06-12

本文共 1659 字,大约阅读时间需要 5 分钟。

//使用轻量级的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();

转载于:https://www.cnblogs.com/zzzili/p/6685298.html

你可能感兴趣的文章
详细分享UICollectionView的自定义布局(瀑布流, 线性, 圆形...)
查看>>
visio的一些有用的方法
查看>>
js跨域问题
查看>>
Excel VBA
查看>>
java IO流
查看>>
Java反射之Bean修改更新属性值等工具类
查看>>
《图解CSS3——第2章 CSS3选择器-3》
查看>>
Exchange Server备份与恢复
查看>>
现在很火的答题赢钱游戏,让我来简单教你怎么做自动答题器
查看>>
转:细数国内市场智能语音开放平台有哪些?
查看>>
移动通信最先进的音频编解码器EVS及用好要做的工作
查看>>
OpenERP button 的三种类型
查看>>
Day 5: How to Learn Grammar....
查看>>
关于OC对象类型数据归档的一个问题
查看>>
javascript之css常用属性
查看>>
winform 承载 WCF 注意,可能不是工作在多线程模式下
查看>>
python-多线程趣味
查看>>
SpReMa-文件存储格式
查看>>
ConcurrentHashMap内存溢出问题
查看>>
Android Layout XML属性研究--android:layout_marginBottom (转载)
查看>>