数据库查询问题(10分)

  • 主题发起人 主题发起人 starforce
  • 开始时间 开始时间
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];
该如何改?
 
if(this.radioButton1.Checked)
s1:=s1+"where 图书编号='"+textBox1.Text+"'";
看错了。-。-
 
加空格
s1+=" where 图书编号='"+textBox1.Text+"'";
 
接受答案了.
 
后退
顶部