WEB开发网
开发学院数据库MSSQL Server SQL2008构建偶尔连接系统 阅读

SQL2008构建偶尔连接系统

 2008-09-28 10:05:07 来源:WEB开发网   
核心提示: ?对以下 Microsoft Synchronization Services for ADO.NET DLL 的引用:?Microsoft.Synchronization.Data?Microsoft.Synchronization.Data.Server?Microsoft.Synch

?对以下 Microsoft Synchronization Services for ADO.NET DLL 的引用:

?Microsoft.Synchronization.Data

?Microsoft.Synchronization.Data.Server

?Microsoft.Synchronization.Data.SqlServerCe

配置完数据同步后,您还必须将同步功能添加到应用程序中。具体而言,您需要添加启动同步过程的代码。

1.在菜单中,点击“Data”,“Show Data Source”,以显示“Data Sources”窗口。

2.将“Customers”节点从“Data Sources”窗口拖到“Form1”中。

3.将一个“Button”控件从“ToolBox”拖到“Form1”中。将此按钮的“Name”属性设置为“SynchronizeButton”,将它的“Text”属性设置为“Synchronize Now”。

4.双击“Synchronize Now”按钮以创建按钮单击事件处理程序,并在代码编辑器中打开该窗体。

5.添加代码以启动同步进程,然后在数据集中重新填充“Customers”表。事件处理程序中的代码应与下面的代码类似:

注意:声明 syncStats 变量的代码行将在下一节中进行介绍。

  // Call the synchronize method to synchronize
  // data between local and remote databases.
  Microsoft.Synchronization.Data.SyncStatistics syncStats;
  syncStats = NorthwindCacheSyncAgent.Instance.Synchronize();
  // After synchronizing the data, refill the
  // table in the dataset.
  this.customersTableAdapter.Fill(this.northwindDataSet.Customers);

上一页  1 2 3 4 5 6 7 8 9 10  下一页

Tags:SQL 构建 偶尔

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接