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; }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)