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(); // ... } // ...