L lxc88 Unregistered / Unconfirmed GUEST, unregistred user! 2002-09-14 #1 delphi如何设置与sql数据库的连接。如何使用msde!!我的程序是单机版的!没有服务器。
G gaohua21 Unregistered / Unconfirmed GUEST, unregistred user! 2002-09-14 #2 在您的电脑里安装SQL Server7.0/2000 的桌面型数据库,用SQL Link 数据引擎与数据库 连接即可实现单机版
N nansha Unregistered / Unconfirmed GUEST, unregistred user! 2002-09-14 #3 上面的老兄说得没错,你试试吧,也可以吧你的数据表导入到你的SQL7或2000中
Z zhem8 Unregistered / Unconfirmed GUEST, unregistred user! 2002-09-14 #4 adoconnection1.connectionstring:='Provider=SQLOLEDB.1;Password=preprep;Persist Security Info=True;User ID=wwwuser;Initial Catalog=custom;Data Source=139.139.10.54'; adoconnection1.connected:=true;
adoconnection1.connectionstring:='Provider=SQLOLEDB.1;Password=preprep;Persist Security Info=True;User ID=wwwuser;Initial Catalog=custom;Data Source=139.139.10.54'; adoconnection1.connected:=true;
T twos Unregistered / Unconfirmed GUEST, unregistred user! 2002-09-15 #5 单机版,可以使用access的呀 不过如果是microsoft的东西最好使用ado,如果不是,就使用bde 可以通过odbc或者sqllink, 如果是ado,当然就如zhem8所说了