查询的方法:
public DataTable GetDataTable(string strwhere)
{
string sql =" SELECT * FROM student WHERE 1=1 "+strwhere;
DataTable dt = dbHelper.Query(sql);
return dt;
}
调用 : 一 .没有参数 : DataTable dt = GetDataTable(""); //所有学生
二.有参数:DataTable dt = GetDataTable(" AND stuname='张三'");//名字叫张三的学生
温馨提示:内容为网友见解,仅供参考