SendColumnNames (scn) extended option

Specifies that column names should be sent in the upload for use by direct row handling.

Syntax
scn={ ON | OFF }; ...
Remarks

The column names are used by the MobiLink server for direct row handling. When using the row handling API to refer to columns by name rather than by index, you should set this option. This is the only use of the column names that are sent by this option.

See Direct row handling.

The default is OFF.

This option has a short form and long form: you can use scn or SendColumnNames.

You can also store extended options in the database. For more information about dbmlsync extended options, see Introduction to dbmlsync extended options.

Example

The following dbmlsync command line illustrates how you can set this option when you start dbmlsync:

dbmlsync -e "scn=on"

The following SQL statement illustrates how you can store this option in the database:

CREATE SYNCHRONIZATION SUBSCRIPTION
   TO sales_publication
   FOR ml_user1
   OPTION scn='on';