exit_oracle_application
| Connection Functions |
Exits the Oracle NCA application.
int exit_oracle_application( );
| host | The host name or IP address of the database server. |
| port | The port number of the database server. |
| command_line | The command line specified when starting the application. |
The exit_oracle_application function disconnects from the Oracle NCA database server and exits the application.
Return Values
Parameterization
You cannot use standard parameterization for any arguments in this function.
Example
In the following example, the exit_oracle_application function exits the session, in the vuser_end section.
vuser_end() {
exit_oracle_application();
return 0;
}

