Lesson 5: Browsing MobiLink synchronization scripts

The synchronization logic for CustDB is held in the consolidated database as MobiLink synchronization scripts. Synchronization logic allows you to determine how much of the consolidated database you need to download and/or upload. You can download complete tables or partial tables (with either row or column subsets) using such techniques as timestamp-based synchronization or snapshot synchronization.

In addition to the tables, users, and publications, you can also use Sybase Central to browse the synchronization scripts that are stored in the consolidated database. Sybase Central is the primary tool for adding these scripts to the database.

The custdb.sql file adds each synchronization script to the consolidated database by calling ml_add_connection_script or ml_add_table_script. Connection scripts control high level events that are not associated with a particular table. Use these events to perform global tasks that are required during every synchronization. Table scripts allow actions at specific events relating to the synchronization of a specific table, such as the start or end of uploading rows, resolving conflicts, or selecting rows to download.

For more information about the synchronization logic used in CustDB, see Synchronization logic source code.

For more information about the implementation of synchronization in CustDB, see Synchronization design.

 Browse the synchronization scripts
  1. Click Start » Programs » SQL Anywhere 12 » Administration Tools » Sybase Central.

  2. In the left pane of Sybase Central, right-click MobiLink 12 and then Open Project. Navigate to %SQLANYSAMP12%\MobiLink\CustDB and click project.mlp. Double-click Consolidated Databases and then double-click the CustDB consolidated database. You are connected to the consolidated database based on the connection information that was provided when you added the consolidated database to your project.

  3. Double-click Connection Scripts.

    The right pane lists a set of synchronization scripts and a set of events with which these scripts are associated. As the MobiLink server carries out the synchronization process, it triggers a sequence of events. Any synchronization script associated with an event is run at that time. By writing synchronization scripts and assigning them to the synchronization events, you can control the actions that are carried out during synchronization.

  4. Click Synchronized Tables.

  5. In the right pane, double-click ULCustomer.

    A set of scripts specific to this table, and their corresponding events appears. These scripts control the way that data in the ULCustomer table is synchronized with the remote databases.

 See also