菜鸟求救:
Delphi7 链接Access,准备执行搜索功能,现在是一个单选按钮对应一个Edit,设置了一个string变量sc0,这部分代码如下:
if radiobutton1.Checked =true then
begin
    edit1.Text:='';
    edit2.Text:='';
    edit3.Text:='';
    edit4.Text:='';
    edit5.Text:='';
    edit6.Text:='';
    sc0 :=edit1.Text;
    end;执行搜索按钮一部分如下:
if radiobutton1.Checked then
begin
  sc0:=edit1.Text ;
  AdoQuery1.Close;
  AdoQuery1.SQL.Clear;
  AdoQuery1.SQL.Add('select * from 影片信息 where 影片名称 = '''+sc0+'''');
  AdoQuery1.Open;
end;执行的时候就说“Access Driver 参数不足,期待是1”
该怎么改呢?谢了各位了!……