Heim >Datenbank >MySQL-Tutorial >关于access的问题,(动软的oledb生成代码问题)

关于access的问题,(动软的oledb生成代码问题)

WBOY
WBOYOriginal
2016-06-07 15:43:431213Durchsuche

access数据库是不支持ROW_NUMBER()的,但是我用动软 生成 器 生成 出来的数据操作层的 代码 有这样的一个方法 /// summary /// 分页获取数据列表 /// /summary public DataSet GetListByPage(string strWhere, string orderby, int startIndex, int endIndex

access数据库是不支持ROW_NUMBER()的,但是我用动软生成生成出来的数据操作层的代码有这样的一个方法

///


/// 分页获取数据列表
///

public DataSet GetListByPage(string strWhere, string orderby, int startIndex, int endIndex)
{
StringBuilder strSql=new StringBuilder();
strSql.Append("SELECT * FROM ( ");
strSql.Append(" SELECT ROW_NUMBER() OVER (");
if (!string.IsNullOrEmpty(orderby.Trim()))
{
strSql.Append("order by T." + orderby );
}
else
{
strSql.Append("order by T.id desc");
}
strSql.Append(")AS Row, T.* from article_xh T ");
if (!string.IsNullOrEmpty(strWhere.Trim()))
{
strSql.Append(" WHERE " + strWhere);
}
strSql.Append(" ) TT");
strSql.AppendFormat(" WHERE TT.Row between {0} and {1}", startIndex, endIndex);
return DbHelperOleDb.Query(strSql.ToString());
}

,我在access的sql视图里测试老是错误,提示,语法丢失,操作符错误。

 

怎么写才对呢?

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn