博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
RetrunMoreRow
阅读量:6158 次
发布时间:2019-06-21

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

using (Conn = new SqlConnection(ConnectionString))

{
   Conn.Open();//打开数据库连接
   string sqlstr = "select * from UserInfo2";
   SqlCommand cmd = new SqlCommand(sqlstr, Conn);
   cmd.CommandType = CommandType.Text;
   SqlDataReader dr = cmd.ExecuteReader(CommandBehavior.CloseConnection);//创建 SqlDataReader实例
   Response.Write("会员名称如下:<br/>");
   while (dr.Read())//遍历数据
   {
      Response.Write(dr["UserName"] + "<br/>");
   }
}

转载于:https://www.cnblogs.com/Yellowshorts/archive/2013/01/21/2869278.html

你可能感兴趣的文章
[BTS] Could not find stored procedure 'mp_sap_check_tid'
查看>>
PLSQL DBMS_DDL.ALTER_COMPILE
查看>>
Activity生命周期
查看>>
高仿UC浏览器弹出菜单效果
查看>>
Ubuntu忘记密码,进不了系统的解决方法
查看>>
[原创]白盒测试技术思维导图
查看>>
<<Information Store and Management>> 读书笔记 之八
查看>>
Windows 8 开发之设置合约
查看>>
闲说HeartBeat心跳包和TCP协议的KeepAlive机制
查看>>
MoSQL
查看>>
Hibernate多对一外键单向关联(Annotation配置)
查看>>
《CLR via C#》读书笔记 之 方法
查看>>
设计模式:组合模式(Composite Pattern)
查看>>
ContentValues 和HashTable区别
查看>>
LogicalDOC 6.6.2 发布,文档管理系统
查看>>
给PowerShell脚本传递参数
查看>>
实战2——Hadoop的日志分析
查看>>
利用FIFO进行文件拷贝一例
查看>>
Ecshop安装过程中的的问题:cls_image::gd_version()和不支持JPEG
查看>>
resmgr:cpu quantum等待事件
查看>>