• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

ADO.Net:从DataReader中获取数据表的Schema信息

发布: 2007-6-30 18:56 | 作者: admin | 来源: | 查看: 14次 | 进入软件测试论坛讨论

领测软件测试网 使用DataReader的GetSchemaTable()方法可以获得数据表中包含的结构信息,此方法返回一个DataTable,DataTable中的每一行(Row)的ColumnName属性值即为数据表的一个字段名。

SqlConnection coreDB=new SqlConnection();
coreDB.ConnectionString= "workstation id=\"GQA-ERIC-LV\";packet size=4096;integrated security=SSPI;" +
"data source=\"gqa-eric-lv\";persist security info=False;initial catalog=CoreDB";

string mySelectQuery = "SELECT ID, Title FROM myBBS order by id asc";
SqlCommand myCommand = new SqlCommand(mySelectQuery,coreDB);
coreDB.Open();
SqlDataReader myReader=myCommand.ExecuteReader();

//将数据库定义的信息保存到表SchemaTable中:
DataTable SchemaTable=myReader.GetSchemaTable();
//表SchemaTable的每一行表示数据库表一个字段的信息:
Response.Write("<table border=1 align=center><tr>");
foreach(DataRow myRow in SchemaTable.Rows)
{
Response.Write("<td>");
Response.Write(myRow["ColumnName"]);
Response.Write("</td>");
}
Response.Write("</tr>");
while(myReader.Read())
{
Response.Write("<tr>");
Response.Write("<td>"+myReader["ID"].ToString()+"</td>");
Response.Write("<td><a href=query.aspx?id="+myReader["ID"]+">"+myReader["title"].ToString()+"</a></td>");
Response.Write("</tr>");
}
Response.Write("</table>");
myReader.Close();
coreDB.Close();

显示的结果如图:

以上亦例示了SqlConnection,SqlCommand,DataReader的使用。

数据库coreDB中的表myBBS定义如下:
if exists (select * from dbo.sysobjects where id = object_id(N@#[dbo].[myBBS]@#) and OBJECTPROPERTY(id, N@#IsUserTable@#) = 1)
drop table [dbo].[myBBS]
GO

CREATE TABLE [dbo].[myBBS] (
[ID] [bigint] IDENTITY (1, 1) NOT NULL ,
[Title] [char] (160) COLLATE Chinese_PRC_CI_AS NULL ,
[Author] [char] (20) COLLATE Chinese_PRC_CI_AS NULL ,
[Date_of_Created] [datetime] NULL ,
[Abstract] [char] (480) COLLATE Chinese_PRC_CI_AS NULL ,
[Content] [ntext] COLLATE Chinese_PRC_CI_AS NOT NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO



延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网