UltraLite User's Guide
UltraLite Reference
Synchronization parameters
Sets parameters to configure the synchronization stream.
A semi-colon separated list of parameter assignments. Each assignment is of the form keyword=value, where the allowed sets of keywords depends on the communications protocol.
For more information, see the following sections:
The parameter is optional, is a string, and by default is null.
For embedded SQL, set the parameter as follows:
ul_synch_info info; // ... info.stream_parms= UL_TEXT( "host=myserver;port=2439" );
For the C++ API, set the parameter as follows:
Connection conn; auto ul_synch_info info; ... conn.InitSynchInfo( &info ); info.stream+parms = UL_TEXT( "host=myserver;port=2439" )
Set the parameter as follows:
UlSynchOptions synch_options = new UlSynchOptions(); synch_opts.setStream( new UlSocketStream() ); synch_opts.setStreamParms( "host=myserver;port=2439" );
Synchronization stream parameters.