多 多多帮助 Unregistered / Unconfirmed GUEST, unregistred user! 2010-01-31 #1 SocketConnection+ClientDataSet,怎么能在断网后在本地数据库运行。联网后上传到服务器上,谢谢。给个以前有的链接也行。
K kkyy Unregistered / Unconfirmed GUEST, unregistred user! 2010-01-31 #2 两个服务器程序安装本机和远程,客户端定时检查两个IP,哪个在线连哪个,同时在线检查本地数据是否有需要上传,
W wcy76 Unregistered / Unconfirmed GUEST, unregistred user! 2010-02-01 #4 SocketConnection1.Address :='192.168.1.1';SocketConnection1.port:='211';SocketConnection1.Connected:=true;联网时从服务器下载数据: with ClientDataSet1do try close; CommandText := 'select [字段] from [表] where .....'; open;...SocketConnection1.Connected := false;断网后操作本地数据库用 :ClientDataSet1.edit;insert;...[].value:='';.post;联网时后用: try ClientDataSet1.open; ClientDataSet1.Edit; ClientDataSet1.ApplyUpdates(-1);...向服务器提交本地更改的数据,但前提是在这之前不能有其他人更改上面的数据
SocketConnection1.Address :='192.168.1.1';SocketConnection1.port:='211';SocketConnection1.Connected:=true;联网时从服务器下载数据: with ClientDataSet1do try close; CommandText := 'select [字段] from [表] where .....'; open;...SocketConnection1.Connected := false;断网后操作本地数据库用 :ClientDataSet1.edit;insert;...[].value:='';.post;联网时后用: try ClientDataSet1.open; ClientDataSet1.Edit; ClientDataSet1.ApplyUpdates(-1);...向服务器提交本地更改的数据,但前提是在这之前不能有其他人更改上面的数据
G guanyue7613 Unregistered / Unconfirmed GUEST, unregistred user! 2010-02-20 #6 当然是下载到本地数据库里,数度取决于数据量大小。