DownloadData GetDownloadData();
返回当前同步的 DownloadData 实例。使用 DownloadData 实例为直接行处理创建下载。
当前同步的 DownloadData 实例。
以下示例假定您拥有一个名为 _cc 的 DBConnectionContext 实例。
// The method used for the handle_DownloadData event. public void HandleDownload() { // Get the DownloadData for the current synchronization. DownloadData my_dd = _cc.GetDownloadData(); // Get an array of tables to set download operations. DownloadTableData[] download_tables = my_dd.GetDownloadTables(); // Get the first table in the DownloadTableData array. DownloadTableData my_download_table = download_tables[0]; // ... } |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |