Contents Index ul_delete_statement system procedure The HotSync conduit installation utility pdf/preface.pdf

UltraLite User's Guide
  UltraLite Reference
    Reference database stored procedures

ul_set_codesegment system procedure


Function 

For Palm Computing Platform development using the C++ API, assigns a SQL statement from an UltraLite project to a particular segment.

Syntax 

ul_set_codesegment(in @project char(128),
in @name char(128), in @segment_name char(8) )

Side effects 

None

See also 

ul_add_statement system procedure

Explicitly assigning segments

Description 

Explicitly assigns the generated code for a C++ API SQL statement to a named Palm segment.

project    The UltraLite project to which the statement applies.

name    The name of the statement as defined in ul_add_statement system procedure..

segment_name    The name of the segment to which the statement is assigned.

Examples 

The following call assigns the statement mystmt in project myproject to segment MYSEG1.

call ul_set_codesegment(
     'myproject', 'mystmt', 'MYSEG1' )

Contents Index ul_delete_statement system procedure The HotSync conduit installation utility pdf/preface.pdf