Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
OCI Datatype Mapping and Manipulation Functions, 21 of 134
Gets the number of days between two dates.
sword OCIDateDaysBetween ( OCIError *err, CONST OCIDate *date1, CONST OCIDate *date2, sb4 *num_days );
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()
.
Input date.
Input date.
Number of days between date1
and date2
.
When the number of days between date1
and date2
is computed, the time is ignored.
This function returns an error if invalid date is passed to it.
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|