Pro*C/C++ Programmer's Guide 11g Release 2 (11.2) Part Number E10825-01 |
|
|
PDF · Mobi · ePub |
This chapter tells you how to run the Pro*C/C++ precompiler, and describes the extensive set of precompiler options in detail. This chapter contains the following topics:
The location of the precompiler differs from system to system. The system or database administrator usually defines logicals or aliases, or uses other system-specific means to make the Pro*C/C++ executable accessible.
To run the Pro*C/C++ precompiler, you issue the following command:
proc option=value...
Note:
The option value is always separated from the option name by an equals sign, with no whitespace around the equals sign.For example, the command
proc INAME=test_proc
precompiles the file test_proc.pc
in the current directory, since the precompiler assumes that the filename extension is pc
. The INAME=argument specifies the source file to be precompiled. The INAME option does not have to be the first option on the command line, but if it is, you can omit the option specification. So, the command
proc myfile
is equivalent to
proc INAME=myfile
Note:
The option names, and option values that do not name specific operating system objects, such as filenames, are not case-sensitive. In the examples in this guide, option names are written in upper case, and option values are usually in lower case. When you enter filenames, including the name of the Pro*C/C++ precompiler executable itself, always follow the case conventions used by your operating system.Some platforms, such as UNIX, require "escape characters" before certain characters in value strings. Consult your platform-specific documentation.
In general, you can use either uppercase or lowercase for precompiler option names and values. However, if your operating system is case sensitive, like UNIX, you must specify filename values, including the name of the Pro*C/C++ executable, using the correct combination of uppercase and lowercase letters.
Precompiler options enable you to control how resources are used, how errors are reported, how input and output are formatted, and how cursors are managed.
The value of an option is a literal, which represents text or numeric values. For example, for the option
... INAME=my_test
the value is a string literal that specifies a filename.
For the option MAXOPENCURSORS
...MAXOPENCURSORS=20
the value is numeric.
Some options take Boolean values, and you can represent these with the strings yes or no, true or false, or with the integer literals 1 or 0 respectively. For example, the option
... SELECT_ERROR=yes
is equivalent to
... SELECT_ERROR=true
or
... SELECT_ERROR=1
all of which mean that SELECT errors should be flagged at run time.
You can use environment variables in SYS_INCLUDE and INCLUDE precompiler options. Environment variables like ORACLE_HOME
can be used in SYS_INCLUDE and INCLUDE directory paths while precompiling a PROC application. SYS_INCLUDE and INCLUDE option values can also come from the config file, pcscfg.cfg
. The following usages of environment variables are supported.
In Linux
$ENV_VAR sys_include=$ORACLE_HOME/precomp/public include=$ORACLE_HOME/precomp/public $(ENV_VAR) sys_include=$(ORACLE_HOME)/precomp/public include=$(ORACLE_HOME)/precomp/public ${ENV_VAR} sys_include=${ORACLE_HOME}/precomp/public include=${ORACLE_HOME}/precomp/public
In Windows
%ENV_VAR% sys_include=%ORACLE_HOME%\precomp\public include=%ORACLE_HOME%\precomp\public
A configuration file is a text file that contains precompiler options. Each record (line) in the file contains only one option, with its associated value or values. Any options entered on a line after the first option are ignored. For example, the following configuration file contains the lines:
FIPS=YES MODE=ANSI CODE=ANSI_C
to set defaults for the FIPS, MODE, and CODE options.
There is a restriction of 300 characters per line for each entry in pcscfg.cfg
. To set a value longer than 300 characters, for example, the SYS_INCLUDE path), create entries in multiple lines. For example,
sys_include=/ade/aime_rdbms_9819/oracle/precomp/public sys_include=/usr/include,/usr/lib/gcc-lib/i486-suse-linux/2.95.3/include sys_include=/usr/lib/gcc-lib/i386-redhat-linux/3.2.3/include sys_include=/usr/lib/gcc-lib/i386-redhat-linux7/2.96/include sys_include=/usr/include
Do not use brackets at the end of a line. A bracket at the right hand end of a line nullifies all previous lines. For example, a bracket at the end of the third line,
sys_include=/ade/aime_rdbms_9819/oracle/precomp/public sys_include=/usr/include,/usr/lib/gcc-lib/i486-suse-linux/2.95.3/include sys_include=/usr/lib/gcc-lib/i386-redhat-linux/3.2.3/include) sys_include=/usr/lib/gcc-lib/i386-redhat-linux7/2.96/include sys_include=/usr/include
sets SYS_INCLUDE to
/usr/lib/gcc-lib/i386-redhat-linux/3.2.3/include, /usr/lib/gcc-lib/i386-redhat-linux7/2.96/include,/usr/include
There is a single system configuration file for each installation. The name of the system configuration file is pcscfg.cfg
. The location of the file is system specific.
Note:
In thepcscfg.cfg
file, you cannot use spaces. For example, if the file contains the following line:
include="D:\Program Files\Microsoft Visual Studio\VC98\include"
the precompilation will fail. You can replace it with the following:
include=D:\Progra~1\Microa~4\VC98\include
Each Pro*C/C++ user can have one or more private configuration files. The name of the configuration file must be specified using the CONFIG= precompiler option.
See Also:
"Using the Precompiler Options"Note:
You cannot nest configuration files. This means that CONFIG= is not a valid option inside a configuration file.The value of an option is determined, in increasing precedence, by:
A value built in to the precompiler
A value set in the command line
A value set inline
For example, the option MAXOPENCURSORS specifies the maximum number of cached open cursors. The built-in precompiler default value for this option is 10. However, if MAXOPENCURSORS=32 is specified in the system configuration file, the default now becomes 32. The user configuration file could set it to yet another value, which then overrides the system configuration value. Finally, an inline specification takes precedence over all preceding defaults.
If a PROC command-line option is used a multiple number of times, the last value assigned in the last occurence is the value used by PROC for precompilation. For example,
$ proc iname=sample.pc ... oname=output1.c ... oname=output2.c ... oname=output3.c
In the example, output3.c
is the ONAME value used by PROC and the generated output filename is output3.c
.
If an option is specified both inside the config file (system default or user specified) and on the command line, then the value specified in the command line takes precedence.
In the case of SYS_INCLUDE and INCLUDE options, the behavior is as defined in Environment Variables. The values are appended unless interrupted by a bracket at the end of a line.
If you specify a private configuration file with CONFIG=filename, then the first value takes precedence and subsequent occurences in the command line are ignored. This is an exception to command-line last-value precedence.
Some options, such as USERID, do not have a precompiler default value. The built-in default values for options that do have them are listed in Table 10-2.
Note:
Check your system-specific documentation for the precompiler default values; they may have been changed from the values in this chapter for your platform.See Also:
"What Occurs During Precompilation?" for more information about configuration files.
You can interactively determine the current value for one or more options by using a question mark on the command line. For example, if you issue the command
proc ?
the complete set of options, along with their current values, is printed to your terminal. (On a UNIX system running the C shell, escape the '?' with a backslash.) In this case, the values are those built into the precompiler, overridden by any values in the system configuration file. But if you issue the command
proc config=my_config_file.h ?
and there is a file named my_config_file.h
in the current directory, all options are listed. Values in the user configuration file supply missing values, and supersede values built-in to the Pro*C/C++ precompiler, or values specified in the system configuration file.
You can also determine the current value of a single option, by simply specifying that option name, followed by =?. For example:
proc maxopencursors=?
prints the current default value for the MAXOPENCURSORS option.
Entering:
proc
will give a short summary that resembles "Precompiler Options".
The option MODE controls several options at once. MODE is known as a macro option. Some newer options such as CLOSE_ON_COMMIT, DYNAMIC and TYPE_CODE control only one function and are known as micro options. A macro option has precedence over micro options only if the macro option is at a higher level of precedence. See "Precedence of Option Values".
The following table lists the values of micro options set by the macro option values:
Table 10-1 How Macro Option Values Set Micro Option Values
Macro Option | Micro Option |
---|---|
MODE=ANSI | ISO |
CLOSE_ON_COMMIT=YES DYNAMIC=ANSI TYPE_CODE=ANSI |
MODE=ORACLE |
CLOSE_ON_COMMIT=NO DYNAMIC=ORACLE TYPE_CODE=ORACLE |
If you specify both MODE=ANSI and CLOSE_ON_COMMIT=NO in the user configuration file, then cursors will not be closed after a COMMIT. If you specify MODE=ORACLE in your configuration file and CLOSE_ON_COMMIT=YES on the command line, then the cursors will be closed.
During precompilation, Pro*C/C++ generates C or C++ code that replaces the SQL statements embedded in your host program. The generated code contains data structures that indicate the datatype, length, and address of host variables, as well as other information required by the runtime library, SQLLIB. The generated code also contains the calls to SQLLIB routines that perform the embedded SQL operations.
Note:
The precompiler does not generate calls to Oracle Call Interface (OCI) routines.Table 10-2 is a quick reference to the major precompiler options. The options that are accepted, but do not have any affect, are not included in this table.
See Also:
Oracle Database Error Messages for messages.
A precompilation unit is a file containing C code and one or more embedded SQL statements. The options specified for a given precompilation unit affect only that unit; they have no effect on other units. For example, if you specify HOLD_CURSOR=YES and RELEASE_CURSOR=YES for unit A, but not for unit B, SQL statements in unit A run with these HOLD_CURSOR and RELEASE_CURSOR values, but SQL statements in unit B run with the default values.
This section highlights issues related to Pro*C/C++ for Windows platforms.
For this release, the system configuration file is called pcscfg.cfg
. This file is located in the ORACLE_HOME\
precomp\admin
directory.
The CODE
option has a default setting of ANSI_C
. Pro*C/C++ for other operating systems may have a default setting of KR_C
.
For sample programs that precompile with PARSE=PARTIAL
or PARSE=FULL
, an include path of c:\program files\devstudio\vc\include
has been added. If Microsoft Visual Studio has been installed in a different location, modify the Include Directories field accordingly for the sample programs to precompile correctly.
Table 10-2 is a quick reference to the Pro*C/C++ options. Options marked with an asterisk can be entered inline.
Table 10-2 Precompiler Options
Syntax | Default | Specifics |
---|---|---|
AUTO_CONNECT={YES | NO} |
NO |
Automatic CLUSTER$ account connection before the first executable statement. |
CHAR_MAP={VARCHAR2 | CHARZ | STRING | CHARF} * |
CHARZ |
Mapping of character arrays and strings. |
CINCR |
1 |
Allows the application to set the next increment for physical connections to be opened to the database, if the current number of physical connections is less than CMAX. |
CLOSE_ON_COMMIT={YES | NO} |
NO |
Close all cursors on COMMIT. |
CODE={ANSI_C | KR_C | CPP} |
KR_C |
Kind of C code generated. |
COMP_CHARSET={MULTI_BYTE | SINGLE_BYTE} |
MULTI_BYTE |
The character set type the C/C++ compiler supports. |
CONFIG=filename |
none |
User's private configuration file. |
CMIN |
2 |
Specifies the minimum number of physical connections in the connection pool. |
CMAX |
100 |
Specifies the maximum number of physical connections that can be opened for the database. |
CNOWAIT |
0 which means not set. |
This attribute determines if the application must repeatedly try for a physical connection when all other physical connections in the pool are busy, and the total number of physical connections has already reached its maximum. |
CPOOL |
NO |
Based on this option, the precompiler generates the appropriate code that directs SQLLIB to enable or disable the connection pool feature. |
CPP_SUFFIX=extension |
none |
Specify the default filename extension for C++ output files. |
CTIMEOUT |
0 which means not set. |
Physical connections that are idle for more than the specified time (in seconds) are terminated to maintain an optimum number of open physical connections. |
DBMS={V7 | NATIVE | V8} |
NATIVE |
Compatibility (Oracle7, Oracle8, Oracle8i, Oracle9i, or the database version to which you are connected at precompile time). |
DEF_SQLCODE={YES | NO} |
NO |
Generate a macro to #define SQLCODE. |
DEFINE=name * |
none |
Define a name for use by the Pro*C/C++ precompiler. |
DURATION={TRANSACTION | SESSION} |
TRANSACTION |
Set pin duration for objects in the cache. |
DYNAMIC={ANSI | ORACLE} |
ORACLE |
Specifies Oracle or ANSI SQL semantics. |
ERRORS={YES | NO} |
YES |
Where to direct error messages (NO means only to listing file, and not to terminal). |
ERRTYPE=filename |
none |
Name of the listing file for intype file error messages. |
FIPS={NO | SQL89 | SQL2 | YES} * |
none |
Whether to flag ANSI/ISO non-compliance. |
HEADER=extension |
none |
Specify file extension for precompiled header files. |
HOLD_CURSOR={YES | NO} * |
NO |
How cursor cache handles SQL statement. |
INAME=]filename |
none |
Name of the input file. |
INCLUDE=pathname * |
none |
Directory path for EXEC SQL INCLUDE or #include statements. |
INTYPE=filename |
none |
Name of the input file for type information. |
LINES={YES | NO} |
NO |
Whether #line directives are generated. |
LNAME=filename |
none |
Name of listing file. |
LTYPE={NONE | SHORT | LONG} |
none |
Type of listing file to be generated, if any. |
MAXLITERAL=10..1024 |
1024 |
Maximum length (bytes) of string literals in generated C code. |
MAXOPENCURSORS=5..255 * |
10 |
Maximum number of concurrent cached open cursors. |
MODE={ANSI | ISO | ORACLE} |
ORACLE |
ANSI/ISO or Oracle behavior. |
NATIVE_TYPES |
NO |
Support for native float/double. |
NLS_CHAR=(var1, ..., varn) |
none |
Specify multibyte character variables. |
NLS_LOCAL={YES | NO} |
NO |
Control multibyte character semantics. |
OBJECTS={YES | NO} |
YES |
Support of object types. |
ONAME=]filename |
iname.c |
Name of the output (code) file. |
ORACA={YES | NO} * |
NO |
Whether to use the ORACA. |
PAGELEN=30..256 |
80 |
Page length of the listing file. |
PARSE={NONE | PARTIAL | FULL} |
FULL |
Whether Pro*C/C++ parses (with a C parser) the.pc source. |
PREFETCH=0..65535 |
1 |
Speed up queries by pre-fetching a given number of rows. |
RELEASE_CURSOR={YES | NO} * |
NO |
Control release of cursors from cursor cache. |
SELECT_ERROR={YES | NO} * |
YES |
Flagging of SELECT errors. |
SQLCHECK={SEMANTICS | SYNTAX} * |
SYNTAX |
Amount of precompile time SQL checking. |
SYS_INCLUDE=pathname |
none |
Directory where system header files, such as iostream.h, are found. |
THREADS={YES | NO} |
NO |
Indicates a shared server application. |
TYPE_CODE={ORACLE | ANSI} |
ORACLE |
Use of Oracle or ANSI type codes for dynamic SQL. |
UNSAFE_NULL={YES | NO} |
NO |
UNSAFE_NULL=YES disables the ORA-01405 message. |
USERID=username/password[@dbname] |
none |
Username/password[@dbname] connect string. |
UTF16_CHARSET={NCHAR_CHARSET | DB_CHARSET} |
NCHAR_CHARSET |
Specify the character set form used by UNICODE(UTF16). |
VARCHAR={YES | NO} |
NO |
Allow the use of implicit VARCHAR structures. |
VERSION={ANY | LATEST | RECENT} * |
RECENT |
Which version of an object is to be returned. |
You can enter any precompiler option in the command line. Many can also be entered inline in the precompiler program source file, using the EXEC ORACLE OPTION statement.
You enter precompiler options in the command line using the following syntax:
... [OPTION_NAME=value] [OPTION_NAME=value] ...
Separate each option=value specification with one or more spaces. For example, you might enter the following:
... CODE=ANSI_C MODE=ANSI
You enter options inline by coding EXEC ORACLE statements, using the following syntax:
EXEC ORACLE OPTION (OPTION_NAME=value);
For example, you might code the following:
EXEC ORACLE OPTION (RELEASE_CURSOR=yes);
The EXEC ORACLE feature is especially useful for changing option values during precompilation. For example, you might want to change HOLD_CURSOR and RELEASE_CURSOR on a statement-by-statement basis.
See Also:
Appendix C, " Performance Tuning" shows you how to optimize runtime performance using inline options.Specifying options inline or in a configuration file is also helpful if your operating system limits the number of characters you can enter on the command line.
An EXEC ORACLE statement stays in effect until textually superseded by another EXEC ORACLE statement specifying the same option. In the following example, HOLD_CURSOR=NO stays in effect until superseded by HOLD_CURSOR=YES:
char emp_name[20]; int emp_number, dept_number; float salary; EXEC SQL WHENEVER NOT FOUND DO break; EXEC ORACLE OPTION (HOLD_CURSOR=NO); EXEC SQL DECLARE emp_cursor CURSOR FOR SELECT empno, deptno FROM emp; EXEC SQL OPEN emp_cursor; printf( "Employee Number Department\n--------------------------\n"); for (;;) { EXEC SQL FETCH emp_cursor INTO :emp_number, :dept_number; printf("%d\t%d\n", emp_number, dept_number); } EXEC SQL WHENEVER NOT FOUND CONTINUE; for (;;) { printf("Employee number: "); scanf("%d", &emp_number); if (emp_number == 0) break; EXEC ORACLE OPTION (HOLD_CURSOR=YES); EXEC SQL SELECT ename, sal INTO :emp_name, :salary FROM emp WHERE empno = :emp_number; printf("Salary for %s is %6.2f.\n", emp_name, salary);
This section is organized for easy reference. It lists the precompiler options alphabetically, and for each option gives its purpose, syntax, and default value. Usage notes that help you understand how the option works are also provided.
Allows automatic connection to the CLUSTER$ account.
AUTO_CONNECT={YES | NO}
NO
Can be entered only on the command line or in a configuration file.
If AUTO_CONNECT=YES, and the application is not already connected to a database when it processes the first executable SQL statement, it attempts to connect using the userid
CLUSTER$username
where username is your current operating system user or task name and CLUSTER$username is a valid Oracle userid.
When AUTO_CONNECT=NO, you must use the CONNECT statement in your program to connect to Oracle.
Specifies the default mapping of C host variables of type char or char[n], and pointers to them, into SQL.
CHAR_MAP={VARCHAR2 | CHARZ | STRING | CHARF}
CHARZ
Before release 8.0, you had to declare char or char[n] host variables as CHAR, using the SQL DECLARE statement. The external datatypes VARCHAR2 and CHARZ were the default character mappings of Oracle7.
See Also:
"VARCHAR Variables" for a table of CHAR_MAP settings, descriptions of the datatype, and where they are the default.
"Inline Usage of the CHAR_MAP Option" for an example of usage of CHAR_MAP in Pro*C/C++.
Allows the application to set the next increment for physical connections to be opened to the database.
CINCR = Range is 1 to (CMAX-CMIN).
1
Initially, all physical connections as specified through CMIN are opened to the server. Subsequently, physical connections are opened only when necessary. Users should set CMIN to the total number of planned or expected concurrent statements to be run by the application to get optimum performance. The default value is set to 2.
Specifies whether or not all cursors declared without the WITH HOLD clause are closed on commit.
CLOSE_ON_COMMIT={YES | NO}
NO
Can be used only on the command line or in a configuration file.
This option will only have an effect when a cursor is not coded using the WITH HOLD clause in a DECLARE CURSOR statement, since that will override both the new option and the existing behavior which is associated with the MODE option. If MODE is specified at a higher level than CLOSE_ON_COMMIT, then MODE takes precedence. For example, the defaults are MODE=ORACLE and CLOSE_ON_COMMIT=NO. If the user specifies MODE=ANSI on the command line, then any cursors not using the WITH HOLD clause will be closed on commit.
When CLOSE_ON_COMMIT=NO (when MODE=ORACLE), issuing a COMMIT or ROLLBACK will close only cursors that are declared using the FOR UPDATE clause or are referenced in a CURRENT OF clause. Other cursors that are not affected by the COMMIT or ROLLBACK statement, remain open, if they are open already. However, when CLOSE_ON_COMMIT=YES (when MODE=ANSI), issuing a COMMIT or ROLLBACK closes all cursors.
See Also:
"Macro and Micro Options" for a further discussion of the precedence of this option.
Specifies the maximum number of physical connections that can be opened for the database.
CINCR = Range is 1 to 65535
100
CMAX value must be at least CMIN+CINCR.Once this value is reached, more physical connections cannot be opened.In a typical application, running 100 concurrent database operations is more than sufficient. The user can set an appropriate value.
Specifies the minimum number of physical connections that can be opened for the database.
CINCR = Range is 1 to (CMAX-CINCR).
2
CMAX value must be at least CMIN+CINCR.Once this value is reached, more physical connections cannot be opened.In a typical application, running 100 concurrent database operations is more than sufficient. The user can set an appropriate value.
This attribute determines if the application must repeatedly try for a physical connection when all other physical connections in the pool are busy, and the total number of physical connections has already reached its maximum.
CNOWAIT = Range is 1 to 65535.
0 which means not set.
If physical connections are not available and no more physical connections can be opened, an error is thrown when this attribute is set. Otherwise, the call waits until it acquires another connection. By default, CNOWAIT is not to be set so a thread will wait until it can acquire a free connection, instead of returning an error.
Specifies the format of C function prototypes generated by the Pro*C/C++ precompiler. (A function prototype declares a function and the datatypes of its arguments.) The precompiler generates function prototypes for SQL library routines, so that your C compiler can resolve external references. The CODE option lets you control the prototyping.
CODE={ANSI_C | KR_C | CPP}
KR_C
Can be entered on the command line, but not inline.
ANSI C standard X3.159-1989 provides for function prototyping. When CODE=ANSI_C, Pro*C/C++ generates full function prototypes, which conform to the ANSI C standard. An example follows:
extern void sqlora(long *, void *);
The precompiler can also generate other ANSI-approved constructs such as the const type qualifier.
When CODE=KR_C (the default), the precompiler comments out the argument lists of generated function prototypes, as shown here:
extern void sqlora(/*_ long *, void * _*/);
Specify CODE=KR_C if your C compiler is not compliant with the X3.159 standard.
When CODE=CPP, the precompiler generates C++ compatible code.
See Also:
"Code Generation" for all of the consequences of using this option value.Specifies that the SQL99 syntax for SELECT, INSERT, DELETE, UPDATE and body of the cursor in a DECLARE CURSOR statement will be supported.
COMMON_PARSER={YES | NO}
NO
Can be entered in the command line.
Indicates to the Pro*C/C++ Precompiler whether multibyte character sets are (or are not) supported by the compiler to be used. It is intended for use by developers working in a multibyte client-side environment (for example, when NLS_LANG is set to a multibyte character set).
COMP_CHARSET={MULTI_BYTE | SINGLE_BYTE}
MULTI_BYTE
Can be entered only on the command line.
With COMP_CHARSET=MULTI_BYTE (default), Pro*C/C++ generates C code that is to be compiled by a compiler that supports multibyte character sets.
With COMP_CHARSET=SINGLE_BYTE, Pro*C/C++ generates C code for single-byte compilers that addresses a complication that may arise from the ASCII equivalent of a backslash (\) character in the second byte of a double-byte character in a multibyte string. In this case, the backslash (\) character is "escaped" with another backslash character preceding it.
Note:
The need for this feature is common when developing in a Shift-JIS environment with older C compilers.This option has no effect when NLS_LANG is set to a single-byte character set.
Specifies the name of a user configuration file.
CONFIG=filename
None
Can be entered only on the command line.
This option is the only way you can inform Pro*C/C++ of the name and location of user configuration files.
Based on this option, the precompiler generates the appropriate code that directs SQLLIB to enable or disable the connection pool feature.
CPOOL = {YES|NO}
NO
If this option is set to NO, other connection pooling options will be ignored by the precompiler.
The CPP_SUFFIX option provides the ability to specify the filename extension that the precompiler appends to the C++ output file generated when the CODE=CPP option is specified.
CPP_SUFFIX=filename_extension
System-specific.
Most C compilers expect a default extension of ".c" for their input files. Different C++ compilers, however, can expect different filename extensions. The CPP_SUFFIX option provides the ability to specify the filename extension that the precompiler generates. The value of this option is a string, without the quotes or the period. For example, CPP_SUFFIX=cc, or CPP_SUFFIX=C.
Physical connections that are idle for more than the specified time (in seconds) are terminated to maintain an optimum number of open physical connections
CTIMEOUT = Range is 1 to 65535.
0 which means not set.
Physical connections will not be closed until the connection pool is terminated.Creating a new physical connection will cost a round trip to the server.
Based on this option, the precompiler activates the additional array insert/select syntax.
NO
If this option is set to NO, the Oracle precompiler syntax is supported, otherwise the DB2 insert/select array syntax is supported.
Specifies whether Oracle follows the semantic and syntactic rules of Oracle9i, Oracle8i, Oracle8, Oracle7, or the native version of Oracle (that is, the version to which the application is connected).
NATIVE
Can be entered only on the command line, or in a configuration file.
The DBMS option lets you control the version-specific behavior of Oracle. When DBMS=NATIVE (the default), Oracle follows the semantic and syntactic rules of the database version to which the application is connected.
When DBMS=V8, or DBMS=V7, Oracle follows the respective rules for Oracle9i (which remain the same as for Oracle7, Oracle8, and Oracle8i).
V6_CHAR is not supported in Oracle and its functionality is provided by the precompiler option CHAR_MAP.
See Also:
"CHAR_MAP"Table 10-3 DBMS and MODE Interaction
Situation | DBMS=V7 | V8MODE=ANSI | DBMS=V7 | V8MODE=ORACLE |
---|---|---|
"no data found" warning code |
+100 |
+1403 |
fetch NULLs without using indicator variables |
error -1405 |
error -1405 |
fetch truncated values without using indicator variables |
no error but sqlwarn[1] is set |
no error but sqlwarn[1]) is set |
cursors closed by COMMIT or ROLLBACK |
all explicit |
CURRENT OF only |
open an already OPENed cursor |
error -2117 |
no error |
close an already CLOSEd cursor |
error -2114 |
no error |
SQL group function ignores NULLs |
no warning |
no warning |
when SQL group function in multirow query is called |
FETCH time |
FETCH time |
declare SQLCA structure |
optional |
required |
declare SQLCODE or SQLSTATE status variable |
required |
optional, but Oracle ignores |
integrity constraints |
enabled |
enabled |
PCTINCREASE for rollback segments |
not allowed |
not allowed |
MAXEXTENTS storage parameters |
not allowed |
not allowed |
Controls whether the Pro*C/C++ precompiler generates #define's for SQLCODE.
DEF_SQLCODE={NO | YES}
NO
Can be used only on the command line or in a configuration file.
When DEF_SQLCODE=YES, the precompiler defines SQLCODE in the generated source code as follows:
#define SQLCODE sqlca.sqlcode
You can then use SQLCODE to check the results of executable SQL statement. The DEF_SQLCODE option is supplied for compliance with standards that require the use of SQLCODE.
In addition, you must also include the SQLCA using one of the following entries in your source code:
#include <sqlca.h>
or
EXEC SQL INCLUDE SQLCA;
If the SQLCA is not included, using this option causes a precompile time error.
Defines a name that can be used in #ifdef and #ifndef Pro*C/C++ precompiler directives. The defined name can also be used by the EXEC ORACLE IFDEF and EXEC ORACLE IFNDEF statements.
DEFINE=name
None
Can be entered on the command line or inline. You can only use DEFINE to define a name—you cannot define macros with it. For example, the following use of define is not valid:
proc my_prog DEFINE=LEN=20
Using DEFINE in the correct way, you could do
proc my_prog DEFINE=XYZZY
And then in my_prog.pc, code
#ifdef XYZZY ... #else ... #endif
Or, you could just as well code
EXEC ORACLE IFDEF XYZZY; ... EXEC ORACLE ELSE; ... EXEC ORACLE ENDIF;
The following example is invalid:
#define XYZZY ... EXEC ORACLE IFDEF XYZZY ... EXEC ORACLE ENDIF;
EXEC ORACLE conditional statements are valid only if the macro is defined using EXEC ORACLE DEFINE or the DEFINE option.
If you define a name using DEFINE=, and then conditionally include (or exclude) a code section using the Pro*C/C++ precompiler #ifdef (or #ifndef) directives, you must also make sure that the name is defined when you run the C compiler. For example, for UNIX cc
, you must use the -D option to define the name.
Sets the pin duration used by subsequent EXEC SQL OBJECT CREATE and EXEC SQL OBJECT DEREF statements. Objects in the cache are implicitly unpinned at the end of the duration.
DURATION={TRANSACTION | SESSION}
TRANSACTION
Can be entered inline by use of the EXEC ORACLE OPTION statement.
TRANSACTION means that objects are implicitly unpinned when the transaction completes.
SESSION means that objects are implicitly unpinned when the connection is terminated.
This micro option specifies the descriptor behavior in dynamic SQL Method 4. The setting of MODE determines the setting of DYNAMIC.
DYNAMIC={ORACLE | ANSI}
ORACLE
Cannot be entered inline by use of the EXEC ORACLE OPTION statement.
See the DYNAMIC option settings in Table 14-2.
Specifies whether error messages are sent to the terminal as well as the listing file (YES), or just to the listing file (NO).
ERRORS={YES | NO}
YES
Can be entered only on the command line, or in a configuration file.
Specifies an output file in which errors generated in processing type files are written. If omitted, errors are output to the screen. See also "INTYPE".
ERRTYPE=filename
None
Only one error file will be produced. If multiple values are entered, the last one is used by the precompiler.
Specifies that the application is interested in registering for and receiving notifications.
EVENTS={YES | NO}
NO
Can only be entered in the command line.
Specifies whether extensions to ANSI SQL are flagged (by the FIPS Flagger). An extension is any SQL element that violates ANSI format or syntax rules, except privilege enforcement rules.
FIPS={SQL89 | SQL2 | YES | NO}
None
Can be entered inline or on the command line.
When FIPS=YES, the FIPS Flagger is enabled, and warning (not error) messages are issued if you use an Oracle extension to ANSI SQL, or use an ANSI SQL feature in a nonconforming manner. Extensions to ANSI SQL that are flagged at precompile time include the following:
Array interface including the FOR clause
SQLCA, ORACA, and SQLDA data structures
Dynamic SQL including the DESCRIBE statement
Embedded PL/SQL blocks
Automatic datatype conversion
DATE, NUMBER, RAW, LONGRAW, VARRAW, ROWID, VARCHAR2, and VARCHAR datatypes
Pointer host variables
Oracle OPTION statement for specifying runtime options
TOOLS statements in user exits
CONNECT statement
TYPE and VAR datatype equivalence statements
AT db_name clause
DECLARE...DATABASE, ...STATEMENT, and ...TABLE statements
SQLWARNING condition in WHENEVER statement
DO function_name() and "do break" and "do continue"actions in WHENEVER statement
COMMENT and FORCE TRANSACTION clauses in COMMIT statement
FORCE TRANSACTION and TO SAVEPOINT clauses in ROLLBACK statement
RELEASE parameter in COMMIT and ROLLBACK statements
Optional colon-prefixing of WHENEVER...GOTO labels, and of host variables in the INTO clause
Permits precompiled header files. Specifies the file extension for precompiled header files.
HEADER=extension
NONE
When precompiling a header file, this option is required and is used to specify the file extension for the output file that is created by precompiling that header file.
When precompiling an ordinary Pro*C/C++ program this option is optional. When given, it enables the use of the precompiled header mechanism during the precompilation of that Pro*C/C++ program.
In both cases, this option also specifies the file extension to use when processing a #include directive. If an #include file exists with the specified extension, Pro*C/C++ assumes the file is a precompiled header file previously generated by Pro*C/C++. Pro*C/C++ will then instantiate the data from that file rather than process the #include directive and precompile the included header file.
This option is only allowed on the command line or in a configuration file. It is not allowed inline. When using this option, specify the file extension only. Do not include any file separators. For example, do not include a period '.' in the extension.
See Also:
"Precompiled Header Files"Specifies how the cursors for SQL statements and PL/SQL blocks are handled in the cursor cache.
HOLD_CURSOR={YES | NO}
NO
Can be entered inline or on the command line.
You can use HOLD_CURSOR to improve the performance of your program. See also Appendix C, " Performance Tuning"
When a SQL data manipulation statement is executed, its associated cursor is linked to an entry in the cursor cache. The cursor cache entry is in turn linked to an Oracle private SQL area, which stores information needed to process the statement. HOLD_CURSOR controls what happens to the link between the cursor and cursor cache.
When HOLD_CURSOR=NO, after Oracle executes the SQL statement and the cursor is closed, the precompiler marks the link as reusable. The link is reused as soon as the cursor cache entry to which it points is needed for another SQL statement. This frees memory allocated to the private SQL area and releases parse locks.
When HOLD_CURSOR=YES, the link is maintained; the precompiler does not reuse it. This is useful for SQL statements that are often executed because it speeds up subsequent executions and there is no need to re-parse the statement or allocate memory for an Oracle private SQL area.
For inline use with implicit cursors, set HOLD_CURSOR before executing the SQL statement. For inline use with explicit cursors, set HOLD_CURSOR before CLOSEing the cursor.
RELEASE_CURSOR=YES overrides HOLD_CURSOR=YES and HOLD_CURSOR=NO overrides RELEASE_CURSOR=NO. For information showing how these two options interact, see Table C-1.
Controls whether an implicit savepoint is taken prior to the start of a new batched insert.
implicit_svpt={YES|NO}
NO
If implict_svpt=yes, a savepoint is taken prior to the start of a new batch of rows. If an error occurs on the insert, an implicit "rollback to savepoint" is executed. This option exists for DB2 compatibility, the obvious downside being the extra round-trip.
If implict_svpt=no, there is no implicit savepoint taken. If an error occurs on the buffered insert, then it is reported back to the application, but no rollback is executed.
Specifies the name of the input file.
INAME=path_and_filename
None
Can be entered only on the command line.
All input file names must be unique at precompilation time.
You can omit the filename extension if it is .pc
. If the input filename is the first option on the command line, you can omit the INAME= part of the option. For example:
proc sample1 MODE=ansi
to precompile the file sample1.pc
, using ANSI mode. This command is the same as
proc INAME=sample1 MODE=ansi
Note:
Thesqlctx
hash value is generated based on the INAME
parameter passed to the Pro*C/C++ command. This can cause issues in the applications where files having the same name are stored in different directories containing different functions and the build scripts are sent to the physical directory to precompile the program. As a result, there is no need to place the makefiles at a higher level and precompile files using their pathnames.Specifies a directory path for files included using the #include or EXEC SQL INCLUDE directives.
INCLUDE=pathname or INCLUDE=(path_1,path_2,...,path_n)
Current directory and paths built into Pro*C/C++.
Can be entered inline or on the command line.
You use INCLUDE to specify a directory path for included files. The precompiler searches directories in the following order:
the current directory
the system directory specified in a SYS_INCLUDE precompiler option
the directories specified by the INCLUDE option, in the order they are entered
the built-in directories for standard header files
You normally do not need to specify a directory path for Oracle-specific header files such as sqlca.h
and sqlda.h
.
Note:
If you specify an Oracle-specific filename without an extension for inclusion, Pro*C/C++ assumes an extension of.h
. So, included files should have an extension, even if it is not .h
.For all other header files, the precompiler does not assume a .h
extension.
You must still use INCLUDE to specify directory paths for non-standard files, unless they are stored in the current directory. You can specify more than one path on the command line, as follows:
... INCLUDE=path_1 INCLUDE=path_2 ...
Note:
If the file you want to include resides in another directory, make sure that there is no file with the same name in the current directory.The syntax for specifying a directory path using the INCLUDE option is system specific. Follow the conventions used for your operating system
Note:
For the INCLUDE option, the precedence of option values gets reversed. Unlike other options in which the values get overwritten, INCLUDE appends all the directory files that are mentioned in:Precompiler
Pro*C/C++ system configuration file
Pro*C/C++ user configuration file
Command line
Inline
However, there is a difference between passing values within or without brackets. If you pass a single value or directory list within brackets, then the existing value of INCLUDE is overwritten. If you pass the list as a simple value without brackets, it will supplement any existing value.
Specifies one or more OTT-generated type files (only needed if Object types are used in the application).
INTYPE=(file_1,file_2,...,file_n)
None
There will be one type file for each Object type in the Pro*C/C++ code.
Specifies whether the Pro*C/C++ precompiler adds #line preprocessor directives to its output file.
LINES={YES | NO}
NO
Can be entered only on the command line.
The LINES option helps with debugging.
When LINES=YES, the Pro*C/C++ precompiler adds #line preprocessor directives to its output file.
Normally, your C compiler increments its line count after each input line is processed. The #line directives force the compiler to reset its input line counter so that lines of precompiler-generated code are not counted. Moreover, when the name of the input file changes, the next #line directive specifies the new filename.
The C compiler uses the line numbers and filenames to show the location of errors. Thus, error messages issued by the C compiler always refer to your original source files, not the modified (precompiled) source file. This also enables stepping through the original source code using most debuggers.
When LINES=NO (the default), the precompiler adds no #line directives to its output file.
Note:
The Pro*C/C++ precompiler does not support the #line directive. This means that you cannot directly code #line directives in the precompiler source. But you can still use the LINES= option to have the precompiler insert #line directives for you. See also "Directives Ignored".Specifies the name of the listing file.
LNAME=filename
None
Can be entered only on the command line.
The default filename extension for the listing file is .lis
.
Specifies the type of listing file generated.
LTYPE={NONE | SHORT | LONG}
SHORT
Can be entered on the command line or in a configuration file.
When a listing file is generated, the LONG format is the default. With LTYPE=LONG specified, all of the source code is listed as it is parsed and messages listed as they are generated. In addition, the Pro*C/C++ options currently in effect are listed.
With LTYPE=SHORT specified, only the generated messages are listed—no source code—with line references to the source file to help you locate the code that generated the message condition.
With LTYPE=NONE specified, no list file is produced unless the LNAME option explicitly specifies a name for a list file. Under the latter condition, the list file is generated with LTYPE=LONG assumed.
Controls the number of rows that need to be buffered before executing the INSERT statement.
max_row_insert={0...1000}
0
Any number greater than zero enables buffered insert feature and buffers that many rows before executing the INSERT statement.
Specifies the maximum length of string literals generated by the precompiler, so that compiler limits are not exceeded.
MAXLITERAL=integer, range is 10 to 1024
1024
Cannot be entered inline.
The maximum value of MAXLITERAL is compiler dependent. For example, some C compilers cannot handle string literals longer than 512 characters, so you would specify MAXLITERAL=512.
Strings that exceed the length specified by MAXLITERAL are divided during precompilation, then recombined (concatenated) at run time.
You can enter MAXLITERAL inline but your program can set its value only once, and the EXEC ORACLE statement must precede the first EXEC SQL statement. Otherwise, Pro*C/C++ issues a warning message, ignores the extra or misplaced EXEC ORACLE statement, and continues processing.
Specifies the number of concurrently open cursors that the precompiler tries to keep cached.
MAXOPENCURSORS=integer
10
Can be entered inline or on the command line.
You can use MAXOPENCURSORS to improve the performance of your program. When precompiling separately, use MAXOPENCURSORS. MAXOPENCURSORS specifies the initial size of the SQLLIB cursor cache.
When an implicit statement is executed and HOLD_CURSOR=NO, or an explicit cursor is closed, the cursor entry is marked as reusable. If this statement is issued again and the cursor entry has not been used for another statement, it is reused.
If a new cursor is needed and the number of cursors allocated is less than MAXOPENCURSORS, then the next one in the cache is allocated. Once MAXOPENCCURSORS has been exceeded Oracle first tries to reuse a previous entry. If there are no free entries, then an additional cache entry will be allocated. Oracle will continue to do this until the program runs out of memory or the database parameter OPEN_CURSORS is exceeded.
During normal processing, when using HOLD_CURSOR=NO and RELEASE_CURSOR=NO (the default), it is advisable to set MAXOPENCURSORS to no more than 6 less than the database parameter OPEN_CURSORS to allow for the cursors used by the data dictionary to process statements.
As your program's need for concurrently open cursors grows, you might want to respecify MAXOPENCURSORS to match the need. A value of 45 to 50 is not uncommon, but remember that each cursor requires another private SQL area in the user process memory space. The default value of 10 is adequate for most programs.
Specifies whether your program observes Oracle practices or complies with the current ANSI/ISO SQL standards.
MODE={ANSI | ISO | ORACLE}
ORACLE
Can be entered only on the command line or in a configuration file.
In the context of this option ISO is equivalent to ANSI.
When MODE=ORACLE (the default), your embedded SQL program observes Oracle practices. For example, a Declare Section is optional, and blanks are stripped.
When MODE=ANSI, your program complies fully with the ANSI SQL standard, and the following changes go into effect:
Issuing a COMMIT or ROLLBACK closes all explicit cursors.
You cannot OPEN an already open cursor or CLOSE an already closed cursor. (When MODE=ORACLE, you can reOPEN an open cursor to avoid re-parsing.)
You must declare a either a long variable named SQLCODE or a char SQLSTATE[6] variable (uppercase is required for both variables) that is in the scope of every EXEC SQL statement. The same SQLCODE or SQLSTATE variable need not be used in each case; that is, the variable need not be global.
Declaring the SQLCA is optional. You need not include the SQLCA.
The "no data found" Oracle warning code returned to SQLCODE becomes +100 instead of +1403. The message text does not change.
Support for native float/double.
NATIVE_TYPES = {YES|NO}
NO
The native float and native double datatypes represent the single-precision and double-precision floating point values. They are represented natively, that is, in the host system's floating point format.
Specifies which C host character variables are treated by the precompiler as multibyte character variables.
NLS_CHAR=varname or NLS_CHAR=(var_1,var_2,...,var_n)
None.
Can be entered only on the command line, or in a configuration file.
This option provides the ability to specify at precompile time a list of the names of one or more host variables that the precompiler must treat as multibyte character variables. You can specify only C char variables or Pro*C/C++ VARCHARs using this option.
If you specify in the option list a variable that is not declared in your program, then the precompiler generates no error.
Determines whether multibyte character set conversions are performed by the precompiler runtime library, SQLLIB, or by the database server.
NLS_LOCAL={NO | YES}
NO
When set to YES, local multibyte support is provided by Pro*C/C++ and the SQLLIB library. The option NLS_CHAR must be used to indicate which C host variables are multibyte.
When set to NO, Pro*C/C++ will use the database server support for multibyte objects. Set NLS_LOCAL to NO for all new applications.
Environment variable NLS_NCHAR must be set to a valid fixed-width National Character Set. Variable-width National Character Sets are not supported.
Can be entered only on the command line, or in a configuration file.
Requests support for object types.
OBJECTS={YES | NO}
YES
Can only be entered in the command line.
Specifies the name of the output file. The output file is the C code file that the precompiler generates.
ONAME=path_and_filename
INAME with a .c extension.
Can be entered only on the command line. Use this option to specify the full path name of the output file, where the path name differs from that of the input (.pc
) file. For example, if you issue the command:
proc iname=my_test
the default output filename is my_test.c
. If you want the output filename to be my_test_1.c
, issue the command
proc iname=my_test oname=my_test_1.c
You should add the .c
extension to files specified using ONAME because one is not added by default.
Note:
Oracle recommends that you not let the output filename default, but rather name it explicitly using ONAME. If you specify an ONAME value without an extension, the name of the generated file will not have one.Specifies whether a program can use the Oracle Communications Area (ORACA).
ORACA={YES | NO}
NO
Can be entered inline or on the command line.
When ORACA=YES, you must place either the EXEC SQL INCLUDE ORACA or #include oraca.h
statement in your program.
Indicates that the outline SQL file needs to be generated for the SQL statements.
outline={yes | no | category_name}
no
The outline SQL file should be in the DEFAULT category if the value is yes
and the generated outline format is
DEFAULT_<filename>_<filetype>_<sequence_no>
If the category name is mentioned, then the SQL file should be generated in the category mentioned. The generated outline format for this is
<category_name>_<filename>_<filetype>_<sequence_no>
The outline SQL file is not generated if the value is no
.
Semantic check should be full when this option is turned on, which means option sqlcheck=full/semantics. If sqlcheck=syntax/limited/none, then error will be generated.
Controls the generation of the outline names.
outlnprefix={none | prefix_name}
no
If outlnprefix=prefix_name, then the outline format
<category_name>_<filename>_<filetype>
is replaced with <prefix_name>
for the outline names.
If the length of the outline name exceeds 30 bytes, then this option is helpful for the user who can just specify the prefix name.
If outlnprefix=none, then the outline names are generated by the system. The generated format is
<category_name>_<filename>_<filetype>_<sequence_no>
Semantic check should be full when this option is turned on, which means option sqlcheck=full/semantics. If sqlcheck=syntax/limited/none, and/or outline=false, then error will be generated.
Specifies the number of lines for each physical page of the listing file.
PAGELEN=integer
80
Cannot be entered inline. The value range allowed is 30..256..
Specifies the way that the Pro*C/C++ precompiler parses the source file.
PARSE={FULL | PARTIAL | NONE}
FULL
To generate C++ compatible code, the PARSE option must be either NONE or PARTIAL.
If PARSE=NONE or PARSE=PARTIAL, all host variables must be declared inside a Declare Section.
The variable SQLCODE must also be declared inside a declare section, or it cannot be relied on to detect errors. Check the default value of PARSE for your platform.
If PARSE=FULL, the C parser is used, and it does not understand C++ constructs, such as classes, in your code.
With PARSE=FULL or PARSE=PARTIAL Pro*C/C++ fully supports C preprocessor directives, such as #define, #ifdef, and so on. However, with PARSE=NONE conditional preprocessing is supported by EXEC ORACLE statements.
Note:
Some platforms have the default value of PARSE as other than FULL. See your system-dependent documentation.See Also:
"Parsing Code" for more information on the PARSE option.
Use this option to speed up queries by pre-fetching a number of rows.
PREFETCH=integer
1
Can be used in a configuration file or on the command-line. The value of the integer is used for execution of all queries using explicit cursors, subject to the rules of precedence.
When used in-line it must placed before OPEN statements with explicit cursors. Then the number of rows pre-fetched when that OPEN is done is determined by the last in-line PREFETCH option in effect.
The value range allowed is 0.. 65535.
Specifies how the cursors for SQL statements and PL/SQL blocks are handled in the cursor cache.
RELEASE_CURSOR={YES | NO}
NO
Can be entered inline or on the command line.
You can use RELEASE_CURSOR to improve the performance of your program.
See Also:
Appendix C, " Performance Tuning"When a SQL data manipulation statement is executed, its associated cursor is linked to an entry in the cursor cache. The cursor cache entry is in turn linked to an Oracle private SQL area, which stores information needed to process the statement. RELEASE_CURSOR controls what happens to the link between the cursor cache and private SQL area.
When RELEASE_CURSOR=YES, after Oracle executes the SQL statement and the cursor is closed, the precompiler immediately removes the link. This frees memory allocated to the private SQL area and releases parse locks. To make sure that associated resources are freed when you CLOSE a cursor, you must specify RELEASE_CURSOR=YES.
When RELEASE_CURSOR=NO, the link is maintained. The precompiler does not reuse the link unless the number of open cursors exceeds the value of MAXOPENCURSORS. This is useful for SQL statements that are often executed because it speeds up subsequent executions. There is no need to re-parse the statement or allocate memory for an Oracle private SQL area.
For inline use with implicit cursors, set RELEASE_CURSOR before executing the SQL statement. For inline use with explicit cursors, set RELEASE_CURSOR before CLOSEing the cursor.
RELEASE_CURSOR=YES overrides HOLD_CURSOR=YES. For a table showing how these two options interact, see Appendix C, " Performance Tuning".
Provides the developer with the option of executing "create outline" statements either by using precompiler or by the developer manually at a later time.
runoutline={yes | no}
no
If runoutline=yes, then the generated 'create outline' statements are executed by the precompiler/translator at the end of a successful precompilation.
The outline option should be set to true or category_name when runoutline is used. Semantic check should be full when this option is turned on, which means option sqlcheck=full/semantics. If sqlcheck=syntax/limited/none, then error will be generated.
Specifies whether your program generates an error when a SELECT statement returns more than one row, or more rows than a host array can accommodate.
SELECT_ERROR={YES | NO}
YES
Can be entered inline or on the command line.
When SELECT_ERROR=YES, an error is generated when a single-row SELECT returns too many rows, or when an array SELECT returns more rows than the host array can accommodate. The result of the SELECT is indeterminate.
When SELECT_ERROR=NO, no error is generated when a single-row SELECT returns too many rows, or when an array SELECT returns more rows than the host array can accommodate.
Whether you specify YES or NO, a random row is selected from the table. The only way to ensure a specific ordering of rows is to use the ORDER BY clause in your SELECT statement. When SELECT_ERROR=NO and you use ORDER BY, Oracle returns the first row, or the first n rows when you are SELECTing into an array. When SELECT_ERROR=YES, whether or not you use ORDER BY, an error is generated when too many rows are returned.
Denotes the Statement cache size for the dynamic SQL statements.
STMT_CACHE = Range is 0 to 65535
0
The stmt_cache option can be set to hold the anticipated number of distinct dynamic SQL statements in the application.
Specifies the location of system header files.
SYS_INCLUDE=pathname | (path1, ..., pathn)
System-specific.
Pro*C/C++ searches for standard system header files, such as stdio.h
, in standard locations that are platform specific. For example, on almost all UNIX systems, the file stdio.h
has the full path name /usr/include/stdio.h.
But C++ compilers can have system header files, such as stdio.h
, that are not in the standard system locations. You can use the SYS_INCLUDE command line option to specify a list of directory paths that Pro*C/C++ searches to look for system header files. For example:
SYS_INCLUDE=(/usr/lang/SC2.0.1/include,/usr/lang/SC2.1.1/include)
The search path that you specify using SYS_INCLUDE overrides the default header location.
If PARSE=NONE, the value specified in SYS_INCLUDE is irrelevant for the precompilation, since there is no need for Pro*C/C++ to include system header files in the precompilation. (You must, of course, still include Oracle-specific headers, such as sqlca.h
. and system header files, with #include directives for pre-processing by the compiler.)
The precompiler searches directories in the following order:
The current directory
The system directory specified in the SYS_INCLUDE precompiler option
The directories specified by the INCLUDE option, in the order entered
The built-in directory for standard header files
Because of step 3, you normally do not need to specify a directory path for standard header files such as sqlca.h
and sqlda.h
.
The syntax for specifying a directory path using the SYS_INCLUDE option is system specific. Follow the conventions used for your operating system
Note:
For the SYS_INCLUDE option, the precedence of option values gets reversed. Unlike other options in which the values get overwritten, SYS_INCLUDE appends all the directory files that are mentioned in:Precompiler
Pro*C/C++ system configuration file
Pro*C/C++ user configuration file
Command line
Inline
However, there is a difference between passing values within or without brackets. If you pass a single value or directory list within brackets, then the existing value of SYS_INCLUDE is overwritten. If you pass the list as a simple value without brackets, it will supplement any existing value.
When THREADS=YES, the precompiler searches for context declarations.
THREADS={YES | NO}
NO
Cannot be entered inline.
This precompiler option is required for any program that requires multithreading support.
With THREADS=YES, the precompiler generates an error if no EXEC SQL CONTEXT USE directive is encountered before the first context is visible and an executable SQL statement is found.
See Also:
Chapter 11, "Multithreaded Applications"This micro option specifies whether ANSI or Oracle datatype codes are used in dynamic SQL Method 4. Its setting is the same as the setting of MODE option.
TYPE_CODE={ORACLE | ANSI}
ORACLE
Cannot be entered inline.
See the possible option settings in Table 14-3
.
Specifying UNSAFE_NULL=YES prevents generation of ORA-01405 messages when fetching NULLs without using indicator variables.
UNSAFE_NULL={YES | NO}
NO
Cannot be entered inline.
The UNSAFE_NULL=YES is allowed only when MODE=ORACLE.
The UNSAFE_NULL option has no effect on host variables in an embedded PL/SQL block. You must use indicator variables to avoid ORA-01405 errors.
Specifies an Oracle username and password.
USERID=username/password[@dbname]
None
Can be entered only on the command line.
Do not specify this option when using the automatic connect feature, which accepts your Oracle username prefixed with CLUSTER$. The actual value of the "CLUSTER$" string is set as a parameter in the INIT.ORA file.
When SQLCHECK=SEMANTICS, if you want the precompiler to get needed information by connecting to Oracle and accessing the data dictionary, you must also specify USERID.
Specify the character set form used by UNICODE(UTF16) variables.
UTF16_CHARSET={NCHAR_CHARSET | DB_CHARSET}
NCHAR_CHARSET
Can be used only on the command line or in a configuration file, but not inline.
If UTF16_CHARSET=NCHAR_CHARSET (the default), the UNICODE(UTF16) bind / define buffer is converted according to the server side National Character Set. There may be a performance impact when the target column is CHAR.
If UTF16_CHAR=DB_CHARSET, the UNICODE(UTF16) bind / define buffer is converted according to the database character set.
Caution:
There may be data loss when the target column is NCHAR.
Instructs the Pro*C/C++ precompiler to interpret some structs as VARCHAR host variables.
VARCHAR={NO | YES}
NO
Can be entered only on the command line.
When VARCHAR=YES, a C struct that you code as
struct { short len; char arr[n]; } name;
is interpreted by the precompiler as a VARCHAR[n] host variable.
VARCHAR can be used in conjunction with the NLS_CHAR option to designate a multibyte character variable.
Determines which version of the object will be returned by the EXEC SQL OBJECT DEREF statement.
VERSION={RECENT | LATEST | ANY}
RECENT
Can be entered inline by use of the EXEC ORACLE OPTION statement.
RECENT means that if the object has been selected into the object cache in the current transaction, then that object is returned. For transactions running in serializable mode, this option has the same effect as LATEST without incurring as many network round trips. Most applications should use RECENT.
LATEST means that if the object does not reside in the object cache, it is retrieved from the database. If It does reside in the object cache, it is refreshed from the server. Use LATEST with caution because it incurs the greatest number of network round trips. Use LATEST only when it is imperative that the object cache is kept as coherent as possible with the server buffer cache
ANY means that if the object already resides in the object cache, return that object. If not, retrieve the object from the server. ANY incurs the fewest network round trips. Use in applications that access read-only objects or when a user will have exclusive access to the objects.