用opendialog打开数据库文件,连接时出现问题 200分 在线等(200)

  • 主题发起人 主题发起人 wjhyyh
  • 开始时间 开始时间
W

wjhyyh

Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.Button1Click(Sender: TObject);beginopendialog1.Execute;adoquery1.ConnectionString :='Provider=Microsoft.Jet.OLEDB.4.0;Data Source=这里怎么写;Persist Security Info=False';adoquery1.Active :=true;end;
 
procedure TForm1.Button1Click(Sender: TObject);begin if not opendialog1.Execute then exit; adoquery1.ConnectionString := format('Provider=Microsoft.Jet.OLEDB.4.0;Data Source=%s;Persist Security Info=False',[opendialog1.filename]); adoquery1.close; adoquery1.sql.text:=_______ adoquery1.Active :=true;end;
 
楼上正解
 
znxia 的回复速度真是一流。似乎每时每刻都在关注 dfw ,没得说了。很多的贴,第一个回复的都是znxia。znxia正解。
 
[:D]楼上你想笑死我 ?
 
procedure TForm1.Button1Click(Sender: TObject);beginopendialog1.Execute;adoquery1.ConnectionString :='Provider=Microsoft.Jet.OLEDB.4.0;Data Source='+YouPath[例如c:/demo/dbf]+'/'+opendialog1.filename+';Persist Security Info=False';adoquery1.Active :=true;end;
 
接受答案了.
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部