本文介绍了如何刷新VB中断开连接的数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个具有服务器和客户端版本的Windows应用程序.
SQL数据库安装在服务器版本上,并且客户端可以访问它.

在从客户端打开应用程序时,它会创建一个数据集并对其进行访问;同时,如果还从其他任何客户端PC中打开了该应用程序,它也会为该特定PC创建另一个数据集.任何更改在客户端PC运行时都不可见.

如何刷新断开连接的数据库?

在此先感谢您.

I have created a windows application which have server and client version.
SQL database installs on the Server version and client access it.

At the time of opening the application from client it creates a dataset aqnd access it; at the same time if that application is also opened from any other client pc it also create another dataset for that particulat pc. Any changes are not visible on the client pc runtime.

How do i refresh this disconnected databse?

Thanks in advance.

推荐答案


DataTable dt1 = new DataTable("Table1");
DataTable dt2 = new DataTable("Table2");
dt1.Merge(dt2);
dt1.WriteXml(@"C:\test.xml");



问候
JP.SIVARAJ



Regards
JP.SIVARAJ



这篇关于如何刷新VB中断开连接的数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-29 02:46
查看更多