——此文章摘自《ASPNET +SQL Server网络应用系统开发案例精解》定价¥特价¥ 详细>>http://tracklinktechcn/?m_id=dangdang&a_id=A&l=&l_type= width= height= border= nosave> //返回DataView对象 return ST_myDsTables[]DefaultView ; } ST_GetFlowerByHits()方法返回一个SqlDataReader可以通过SqlDataReader来遍历整个数据集 public SqlDataReader ST_GetFlowerByHits() { string ST_strsql; SqlDataReader ST_result; try { //创建SqlConnection对象 SqlConnection ST_myCn=new SqlConnection(ST_strConn); //创建查询推荐前的鲜花名字的sql语句 ST_strsql=select top ST_idST_nameST_descr= +SUBSTRING (ST_description )+ST_image=case when(not ST_Cover is null) then <img src=ST_ReadFlowerCoveraspx? id=+cast(ST_id as varchar())+ Border= width= height=> else <img src=img/picjpg border= width = height=> end from ST_Flower order by ST_hits DESC; //创建SqlCommand对象 SqlCommand ST_myCm=new SqlCommand(ST_strsqlST_myCn); //打开连接 ST_myCnOpen (); ST_result=ST_myCmExecuteReader(CommandBehaviorCloseConnection); return ST_result; } catch(SystemDataSqlClientSqlException er) { throw new Exception(erMessage); } } ST_GetCommentTop()用来查询评论排名前的评论标题 public DataView ST_GetCommentTop() { string ST_strsql; DataSet ST_myDs; //创建查询评论排名前的评论标题的sql语句 ST_strsql=select top ST_Flowerid ST_CommentCaption=ST_UserName+:+SUBSTRING(ST_ Caption ) from ST_Comment ; ST_myDs=ST_ExecuteSqlDs(ST_strsql); return ST_myDsTables[]DefaultView ; } right>[http://developcsaicn/dotnet_ASP/htm>] [http://developcsaicn/dotnet_ASP/htm>] [http://developcsaicn/dotnet_ASP/htm>] [http://developcsaicn/dotnet_ASP/htm>] [] |