Oracle® Database Gateway for APPC User's Guide 11g Release 2 (11.2) Part Number E12071-02 |
|
|
PDF · Mobi · ePub |
The Oracle Database Gateway for APPC requires the use of the RAW datatype to transfer data to and from PL/SQL without any alteration by Oracle Net. This is necessary because only the PL/SQL applications have information about the format of the data being sent to and received from the remote transaction programs. Oracle Net only has information about the systems where the PL/SQL application and the gateway server are running. If Oracle Net is allowed to perform translation on the data flowing between PL/SQL and the gateway, the data can end up in the wrong format.
This appendix contains the following sections:
Note:
The IBM VS COBOL II compiler has been desupported. However, the string "IBMVSCOBOLII
" is still used as the value of the compiler name parameter to represent any COBOL compiler you choose to use. The value IBMVSCOBOLII
should still be used and does not create a dependency on any specific version of the compiler.The UTL_PG
package is an extension to PL/SQL that provides a full set of functions for converting COBOL number formats into Oracle numbers and Oracle numbers into COBOL number formats.
UTL_PG
conversion format RAWs are not portable in this release. Additionally, generation of conversion format RAWs on one system and transfer to another system is not supported.
The functions listed in this section are called in the standard PL/SQL manner:
package_name.function_name(arguments)
Specifically for UTL_PG
routines, this is:
UTL_PG.function_name(arguments)
For each function listed below, the function name, arguments and their datatypes, and the return value datatype are provided. Unless otherwise specified, the parameters are IN
, not OUT
, parameters.
The following UTL_PG
functions share several similar parameters among themselves:
RAW_TO_NUMBER
MAKE_NUMBER_TO_RAW_FORMAT
MAKE_RAW_TO_NUMBER_FORMAT
NUMBER_TO_RAW
These similar parameters are described in detail in Table C-1 and then referenced only by name in subsequent tables listing the parameters for each UTL_PG
function in this Appendix.
Table C-1 describes the input parameters that are common to all of the UTL_PG
functions:
Table C-1 Input Parameters Common to UTL_PG Function
Parameter | Description |
---|---|
is the compiler datatype mask. This is the datatype to be converted, specified in the source language of the named compiler ( |
|
is the compiler datatype mask options or |
|
is the compiler environment clause or |
|
is the compiler name. The only supported value is |
|
is the compiler options or |
|
is the zoned decimal code page specified in Globalization Support format, |
|
is the warning indicator. A Boolean indicator which controls whether conversion warning messages are to be returned in the wmsgblk |
|
is the warning message block declared size in bytes. It is a |
Table C-2 describes the output parameter that is common to the UTL_PG
functions:
Table C-2 Output Parameters Common to UTL_PG Functions
Parameter | Description |
---|---|
is the warning message block. It is a RAW value which can contain multiple warnings in both full message and substituted parameter formats, if If |
RAW_TO_NUMBER
converts a RAW byte-string r
from the remote host internal format specified by mask,
maskopts,
envrnmnt,
compname,
compopts,
and nlslang
into an Oracle number.
Warnings are issued, if enabled, when the conversion specified conflicts with the conversion implied by the data or when conflicting format specifications are supplied.
For detailed information about the mask,
maskopts,
envrnmnt,
compname
, and compopts
arguments, refer to "NUMBER_TO_RAW and RAW_TO_NUMBER Argument Values".
function RAW_TO_NUMBER (r IN RAW, mask IN VARCHAR2, maskopts IN VARCHAR2, envrnmnt IN VARCHAR2, compname IN VARCHAR2, compopts IN VARCHAR2, nlslang IN VARCHAR2, wind IN BOOLEAN, wmsgbsiz IN BINARY_INTEGER, wmsgblk OUT RAW) RETURN NUMBER;
Where Table C-3 describes the parameters in this function:
Table C-3 RAW_TO_NUMBER Function Parameters
Parameter | Description |
---|---|
|
is the remote host data to be converted. |
|
is the compiler datatype mask. |
|
are the compiler datatype mask options or |
|
is the compiler environment clause or |
|
is the compiler name. |
|
are the compiler options or |
|
is the zoned decimal code page in Globalization Support format. |
|
is a warning indicator. |
|
is the warning message block size in bytes. |
|
is the warning message block. This is an |
Defaults and Optional Parameters
Table C-4 describes the default and optional parameters of the RAW_TO_NUMBER
function:
Table C-4 Optional and Default Parameters of the RAW_TO_NUMBER Function
Parameters | Description |
---|---|
|
null allowed, no default value |
|
null allowed, no default value |
|
null allowed, no default value |
An Oracle number corresponding in value to r
.
If you receive an ORA-xxxx error or warning message, refer to the Oracle Database Error Messages for an explanation and information about how to handle it.
NUMBER_TO_RAW
converts an Oracle number n
of declared precision and scale into a RAW byte-string in the remote host internal format specified by mask
, maskopts,
envrnmnt,
compname,
compopts
, and nlslang
.
Warnings are issued, if enabled, when the conversion specified conflicts with the conversion implied by the data or when conflicting format specifications are supplied.
For detailed information about the mask,
maskopts,
envrnmnt,
compname,
and compopts
arguments, refer to"NUMBER_TO_RAW and RAW_TO_NUMBER Argument Values".
function NUMBER_TO_RAW (n IN NUMBER, mask IN VARCHAR2, maskopts IN VARCHAR2, envrnmnt IN VARCHAR2, compname IN VARCHAR2, compopts IN VARCHAR2, nlslang IN VARCHAR2, wind IN BOOLEAN, wmsgbsiz IN BINARY_INTEGER, wmsgblk OUT RAW) RETURN RAW;
Where Table C-5 describes the parameters in this function:
Table C-5 NUMBER_TO_RAW Function Parameters
Parameter | Description |
---|---|
|
is the Oracle number to be converted. |
|
is the compiler datatype mask. |
|
are the compiler datatype mask options or |
|
is the compiler environment clause or |
|
is the compiler name. |
|
are the compiler options or |
|
is the zoned decimal code page in Globalization Support format. |
|
is a warning indicator |
|
is the warning message block size in bytes. |
|
is the warning message block. This is an |
Defaults and Optional Parameters
Table C-6 describes the defaults and optional parameters for the NUMBER_TO_RAW
function:
Table C-6 Defaults and Optional Parameters for NUMBER_TO_RAW Function
Parameter | Description |
---|---|
|
null allowed, no default value |
|
null allowed, no default value |
|
null allowed, no default value |
A RAW value corresponding in value to n
.
If you receive an ORA-xxxx error or warning message, refer to the Oracle Database Error Messages for an explanation and information about how to handle it.
MAKE_RAW_TO_NUMBER_FORMAT
makes a RAW_TO_NUMBER
format conversion specification used to convert a RAW byte-string from the remote host internal format specified by mask,
maskopts,
envrnmnt,
compname,
compopts,
and nlslang
into an Oracle number of comparable precision and scale.
Warnings are issued, if enabled, when the conversion specified conflicts with the conversion implied by the data or when conflicting format specifications are supplied.
This function returns a RAW value containing the conversion format which can be passed to UTL_PG.RAW_TO_NUMBER_FORMAT
.
For detailed information about the mask,
maskopts
, envrnmnt
, compname
, and compopts
arguments, refer to "NUMBER_TO_RAW and RAW_TO_NUMBER Argument Values".
function MAKE_RAW_TO_NUMBER_FORMAT (mask IN VARCHAR2, maskopts IN VARCHAR2, envrnmnt IN VARCHAR2, compname IN VARCHAR2, compopts IN VARCHAR2, nlslang IN VARCHAR2, wind IN BOOLEAN, wmsgbsiz IN BINARY_INTEGER, wmsgblk OUT RAW) RETURN RAW;
Where Table C-7 describes the parameters in this function:
Table C-7 MAKE_RAW_TO_NUMBER_FORMAT Function Parameters
Parameter | Description |
---|---|
|
is the compiler datatype mask. |
|
are the compiler datatype mask options or |
|
is the compiler environment clause or |
|
is the compiler name. |
|
are the compiler options or |
|
is the zoned decimal code page in Globalization Support format. |
|
is a warning indicator. |
|
is the warning message block size in bytes. |
|
is the warning message block. This is an |
Defaults and Optional Parameters
Table C-8 describes the defaults and optional parameters of the MAKE_RAW_TO_NUMBER_FORMAT
function:
Table C-8 Default and Optional MAKE_RAW_TO_NUMBER_FORMAT Parameters
Parameter | Description |
---|---|
|
null allowed, no default value |
|
null allowed, no default value |
|
null allowed, no default value |
A RAW(2048)
format conversion specification for RAW_TO_NUMBER
.
If you receive an ORA-xxxx error or warning message, refer to the Oracle Database Error Messages guide for an explanation and information about how to handle it.
MAKE_NUMBER_TO_RAW_FORMAT
makes a NUMBER_TO_RAW
format conversion specification used to convert an Oracle number of declared precision and scale to a RAW byte-string in the remote host internal format specified by mask,
maskopts,
envrnmnt
, compname
, compopts
, and nlslang.
Warnings are issued, if enabled, when the conversion specified conflicts with the conversion implied by the data or when conflicting format specifications are supplied.
This function returns a RAW value containing the conversion format which can be passed to UTL_PG.NUMBER_TO_RAW_FORMAT
. The implementation length of the result format RAW is 2048 bytes.
For detailed information about the mask,
maskopts,
envrnmnt,
compname
, and compopts
arguments, refer to "NUMBER_TO_RAW and RAW_TO_NUMBER Argument Values".
function MAKE_NUMBER_TO_RAW_FORMAT (mask IN VARCHAR2, maskopts IN VARCHAR2, envrnmnt IN VARCHAR2, compname IN VARCHAR2, compopts IN VARCHAR2, nlslang IN VARCHAR2, wind IN BOOLEAN, wmsgbsiz IN BINARY_INTEGER, wmsgblk OUT RAW) RETURN RAW;
Where Table C-9 describes the parameters in this function:
Table C-9 MAKE_NUMBER_TO_RAW_FORMAT Function Parameters
Parameter | Description |
---|---|
|
is the compiler datatype mask. |
|
are the compiler datatype mask options or |
|
is the compiler environment clause or |
|
is the compiler name. |
|
are the compiler options or |
|
is the zoned decimal code page in Globalization Support format. |
|
is a warning indicator |
|
is the warning message block size in bytes. |
|
is the warning message block. This is an |
Defaults and Optional Parameters
Table C-10 describes the defaults and optional parameters for the MAKE_NUMBER_TO_RAW_FORMAT
function:
Table C-10 Optional, Default Parameters: MAKE_NUMBER_TO_RAW_FORMAT
Parameter | Description |
---|---|
|
null allowed, no default value |
|
null allowed, no default value |
|
null allowed, no default value |
A RAW(2048)
format conversion specification for NUMBER_TO_RAW
.
If you receive an ORA-xxxx error or warning message, refer to the Oracle Database Error Messages guide for an explanation and information about how to handle it.
RAW_TO_NUMBER_FORMAT
converts, according to the RAW_TO_NUMBER
conversion format r2nfmt
, a RAW byte-string rawval
in the remote host internal format into an Oracle number.
function RAW_TO_NUMBER_FORMAT (rawval IN RAW, r2nfmt IN RAW) RETURN NUMBER;
where Table C-11 describes the parameters in this function:
Table C-11 RAW_TO_NUMBER_FORMAT Function Parameters
Parameter | Description |
---|---|
|
is the remote host data to be converted. |
|
is a |
None
An Oracle number corresponding in value to r
.
If you receive an ORA-xxxx error or warning message, refer to the Oracle Database Error Messages guide for an explanation and information about how to handle it.
NUMBER_TO_RAW_FORMAT
converts, according to the NUMBER_TO_RAW
conversion format n2rfmt
, an Oracle number numval
of declared precision and scale into a RAW byte-string in the remote host internal format.
function NUMBER_TO_RAW_FORMAT (numval IN NUMBER, n2rfmt IN RAW) RETURN RAW;
Where Table C-12 describes the parameters in this function:
Table C-12 NUMBER_TO_RAW_FORMAT Function Parameters
Parameters | Description |
---|---|
|
is the Oracle number to be converted. |
|
is a |
None
A RAW value corresponding in value to n
.
If you receive an ORA-xxxx error or warning message, refer to the Oracle Database Error Messages guide for an explanation and information about how to handle it.
WMSGCNT
tests a wmsgblk
to determine how many warnings, if any, are present.
function WMSGCNT (wmsgblk IN RAW) RETURN BINARY_INTEGER;
Where Table C-13 describes the parameter in this function.
Table C-13 WMSGCNT Function Parameter
Parameter | Description |
---|---|
|
is the warning message block returned from one of the following functions:
|
None
A BINARY_INTEGER
value equal to the count of warnings present in the RAW wmsgblk
.
Table C-14 lists possible returned values:
Table C-14 WMSGCNT Return Values
Description | |
---|---|
|
indicates a count of warnings present in |
|
indicates that no warnings are present in |
If you receive an ORA-xxxx error or warning message, refer to the Oracle Database Error Messages guide for an explanation and information about how to handle it.
WMSG
extracts a warning message specified by wmsgitem
from wmsgblk
.
function WMSG (wmsgblk IN RAW, wmsgitem IN BINARY_INTEGER, wmsgno OUT BINARY_INTEGER, wmsgtext OUT VARCHAR2, wmsgfill OUT VARCHAR2) RETURN BINARY_INTEGER;
Where Table C-15 describes the parameters in this function:
Table C-15 WMSG Function Parameters
Parameter | Description |
---|---|
|
is a RAW warning message block returned from one of the following functions:
|
|
is a |
|
is an |
|
is a |
|
is a warnparm1;;warnparm2;;...;;warnparmn where each warning parameter is delimited by a double semicolon. |
None
A BINARY_INTEGER
value containing a status return code.
A return code of "0" indicates that wmsgno
, wmsgtext
, and wmsgfill
are assigned and valid.
If you receive an ORA-xxxx error or warning message, refer to the Oracle Database Error Messages guide for an explanation and information about how to handle it.
Table C-16 describes the error messages you could receive:
Table C-16 WMSG Function Errors
Error | Description |
---|---|
|
indicating the warning specified by |
|
indicating an invalid message block. |
|
indicating |
|
indicating there are too many substituted warning parameters. |
This table lists the valid values for the format arguments for NUMBER_TO_RAW
and RAW_TO_NUMBER
and related functions. Following are examples of some valid COBOL picture masks. Any valid COBOL picture mask may be used. Refer to the appropriate IBM COBOL programming guides for an explanation of COBOL picture masks.
mask: COBOL picture mask PIC 9(n) where 1 <= n <= 18 PIC S9(n) where 1 <= n <= 18 PIC 9(n)V9(s) where 1 <= n+s <= 18 PIC S9(n)V9(s) where 1 <= n+s <= 18 PIC S9999999V99 PIC V99999 PIC SV9(5) PIC 999.00 PIC 99/99/99 PIC ZZZ.99 PIC PPP99 PIC +999.99 PIC 999.99+ PIC -999.99 PIC 999.99- PIC $$$$$,$$$.99 PIC $9999.99DB PIC $9999.99CR maskopts: COBOL picture mask options COMP USAGE IS COMP USAGE IS COMPUTATIONAL COMP-3 USAGE IS COMP-3 USAGE IS COMPUTATIONAL-3 COMP-4 USAGE IS COMP-4 USAGE IS COMPUTATIONAL-4 DISPLAY USAGE IS DISPLAY SIGN IS LEADING SIGN IS LEADING SEPARATE SIGN IS LEADING SEPARATE CHARACTER SIGN IS TRAILING SIGN IS TRAILING SEPARATE SIGN IS TRAILING SEPARATE CHARACTER envrnmnt: COBOL environment clause CURRENCY SIGN IS x where x is a valid currency sign character DECIMAL-POINT IS COMMA compname: COBOL compiler name IBMVSCOBOLII compopts: COBOL compiler options (no values are supported at this time)