Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
OCI Datatype Mapping and Manipulation Functions, 91 of 134
Gets the modulus (remainder) of the division of two Oracle numbers.
sword OCINumberMod ( OCIError *err, CONST OCINumber *number1, CONST OCINumber *number2, OCINumber *result );
The OCI error handle. If there is an error, it is recorded in err
and this function returns OCI_ERROR. Obtain diagnostic information by calling OCIErrorGet()
.
Pointer to the numerator.
Pointer to the denominator.
Remainder of the result.
This function returns an error if number1
or number2
is null, or if there is a divide-by-zero error.
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|