access数据库的查找问题
小弟写了这么一段程序,里面有一个access 建的数据库,且只含有一个数据表.现在我想在程序中增加数据库的有条件功能,添加一个控件textBox 1,作为查询记录的条件,实现有条件的信息查询。请问查询语句怎么写,写在哪里?-------------------------------------------------------------------
private void Page_Load(object sender, System.EventArgs e)
{
string connString=@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" +Server.MapPath(@".\db2.mdb");
OleDbConnection conn=new OleDbConnection(connString);
string sql="select * from table2";
OleDbCommand cmd=new OleDbCommand(sql,conn);
conn.Open();
this.DataGrid1.DataSource=cmd.ExecuteReader();
this.DataGrid1.DataBind();
conn.Close();
}
---------------------------------------------------------------------