mco_runtime_setoption

Set a runtime option.

Prototype

 
    void mco_runtime_setoption(	int option, int value)
 

Arguments

option The option to be set. (See the table below)
value The value to which the option will be set. (See the table below)

Description

This function sets the runtime option to the specified value. The options and allowable values are described in page Runtime Options.

Return Codes

void None

Example

 
    Application snippet:

     
    int main(int argc, char* argv[])
    {
        ...
         
        mco_runtime_setoption( MCO_RT_OPTION_DATETIME_PRECISION, 1000000 );

         
        ...
         
        mco_runtime_start();
    }
 

Files

Header file:
mco.h
Source file:
mcodb.c
Library:
libmcolib.a
Header file:
mco.h
Source file:
corestub.c
Library:
libmcorsqlstub.a