Contents Index example_upload_cursor table event example_upload_insert table event

MobiLink Synchronization Reference
  Synchronization Events

example_upload_delete table event


Function 

Processes the upload stream to handle rows deleted from the remote database. The script is not called by MobiLink.

Parameters 
Item Parameter
1 column 1
2 column 2
... ...
Description 

The statement based example_upload_delete script handles rows that are deleted in the remote database. The action taken at the consolidated database can be a DELETE statement, but need not be.

See also 

upload_delete table event

SQL example 

This example marks customers that are deleted from the remote database as inactive.

UPDATE Customer
SET active = 0
WHERE cust_id=?

Contents Index example_upload_cursor table event example_upload_insert table event