MobiLink Synchronization User's Guide
The CustDB Sample Application
Synchronization
You can use Sybase Central to inspect the synchronization scripts in the consolidated database.
The custdb.sql file adds each synchronization script to the consolidated database by calling ml_add_connection_script or ml_add_table_script.
The following lines in custdb.sql add a table-level script for the ULProduct table, which is executed during the download_cursor event. The script consists of a single SELECT statement.
call ml_add_table_script( 'CustDB', 'ULProduct', 'download_cursor', 'SELECT prod_id, price, prod_name FROM ULProduct' ) go