本文介绍了使用MS Access DataBase在DataSet的2个DatesQuery问题之间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在SQL中它显示正确的结果,但在MS Access 2003中没有数据通过DataSet显示。但是同样的查询通过MS Access中的SQL视图显示结果。
代码是:
In SQL it shows correct Result, but in MS Access 2003 no Data Shows through DataSet. But same query shows result through SQL View in MS Access.
Code is :
string str = "select checktime from CHECKINOUT where UserId=2 and checktime between 04/11/2013 and 04/12/2013";
private DataSet DSet(string str)
{
OleDbConnection con = new OleDbConnection(ConnectionString);
com = new OleDbCommand(str, con);
oledbda = new OleDbDataAdapter(com);
DataSet ds = new DataSet();
oledbda.Fill(ds);
return ds;
}
ds不返回任何数据。请更正。
ds Returns no any Data.Please correct it.
推荐答案
这篇关于使用MS Access DataBase在DataSet的2个DatesQuery问题之间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!