exit

Description

Closes Client-Library and deallocates all Embedded SQL resources allocated to your program.

Syntax

exec sql exit;

Examples

Example 1

    exec sql include sqlca;
     main()
     {
     /* The body of the main function goes here,
     ** including various Embedded SQL statements.
     */
     ...
     /* The exit statement must be the last
     ** embedded SQL statement in the program. 
     */
     exec sql exit;
     }     /* end of main */

Usage

See also

disconnect