S
starforce
Unregistered / Unconfirmed
GUEST, unregistred user!
string s1;
s1="select 图书编号,书名,作者,价格,书架号 from books";
if(this.radioButton1.Checked)
s1+="where 图书编号='"+textBox1.Text+"'";
this.oleDbDataAdapter1.SelectCommand.CommandText=s1;
this.dataSet11.Clear();
this.oleDbDataAdapter1.Fill(this.dataSet11);//显示出错//
this.dataGrid1.DataSource=this.dataSet11.Tables[0];
该如何改?
s1="select 图书编号,书名,作者,价格,书架号 from books";
if(this.radioButton1.Checked)
s1+="where 图书编号='"+textBox1.Text+"'";
this.oleDbDataAdapter1.SelectCommand.CommandText=s1;
this.dataSet11.Clear();
this.oleDbDataAdapter1.Fill(this.dataSet11);//显示出错//
this.dataGrid1.DataSource=this.dataSet11.Tables[0];
该如何改?