DownloadData GetDownloadData();
Gibt eine DownloadData-Instanz für die aktuelle Synchronisation zurück. Verwenden Sie die DownloadData-Instanz, um den Download für direkte Zeilenbehandlung zu erstellen.
Eine DownloadData-Instanz für die aktuelle Synchronisation.
Bei dem folgenden Beispiel wird vorausgesetzt, dass eine DBConnectionContext-Instanz namens _cc vorhanden ist.
// 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]; // ... } |
Kommentieren Sie diese Seite in DocCommentXchange. Senden Sie uns Feedback über diese Seite via E-Mail. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |