delphi如何连接vfp的数据库(100分)

  • 主题发起人 主题发起人 tjbubble
  • 开始时间 开始时间
T

tjbubble

Unregistered / Unconfirmed
GUEST, unregistred user!
delphi如何连接vfp5.0的数据库
 
使用bde建别名,或是使用odbc都可以。
 
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:/Docs/DBF/;Extended Properties=dBase 5.0;Persist Security Info=False
 
with table1 do begin
tabletype:=ttfoxpro;
tablename:=文件名;
databasename:=文件路径;
try open except end;
end
就可以打开了
 
后退
顶部