Returns the SyncResult object that contains the status of the synchronization.
abstract SyncResult SyncParms.getSyncResult()
The SyncResult object representing the result of the last call to the Connection.synchronize method.
The following example illustrates how to get the result set of the last call to the Connection.synchronize method:
conn.synchronize( mySyncParms ); SyncResult result = mySyncParms.getSyncResult(); display( "*** Synchronized *** sent=" + result.getSentRowCount() + ", received=" + result.getReceivedRowCount() );
This method does not return the result of the last SYNCHRONIZE SQL statement. To obtain the SyncResult object for the last SYNCHRONIZE SQL statement, use the getSyncResult method on the Connection object passed in.