Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
返回当前同步的 DownloadData。
DownloadData DBConnectionContext.getDownloadData()
当前同步的 DownloadData。如果此同步无下载,则返回 Null。
使用 DownloadData 类可创建直接行处理下载。有关直接行处理的详细信息,请参见直接行处理。
以下示例说明如何使用 [DBConnectionContext.getDownloadData] 方法获取当前同步的 [DownloadData] 实例。本示例假设您已创建名为 [_cc] 的 [DBConnectionContext] 实例。
// The method used for the handle_DownloadData event. public void HandleDownload() throws SQLException { // Get the DownloadData for the current synchronization DownloadData my_dd = _cc.getDownloadData(); // ... } // ...