Divide one DBMONEY4 value by another.
RETCODE dbmny4divide(dbproc, m1, m2, quotient) DBPROCESS *dbproc; DBMONEY4 *m1; DBMONEY4 *m2; DBMONEY4 *quotient;
A pointer to the DBPROCESS structure that provides the connection for a particular front-end/server process. It contains all the information that DB-Library uses to manage communications and data between the front end and the server.
This parameter may be NULL. The DBPROCESS is used as a parameter to an application’s error handler. It also contains information on what language to print error messages in. If a DBPROCESS is not supplied, the default national language is used.
A pointer to the DBMONEY4 value serving as dividend.
A pointer to the DBMONEY4 value serving as divisor.
A pointer to a DBMONEY4 variable to hold the result of the division.
SUCCEED or FAIL.
dbmny4divide returns FAIL in case of overflow or division by zero, or if m1, m2, or quotient is NULL.
dbmny4divide divides the m1 DBMONEY4 value by the m2 DBMONEY4 value and places the result in *quotient.
In case of overflow or division by zero, dbmny4divide returns FAIL and sets *quotient to $0.0000.
The range of legal DBMONEY4 values is from -$214,748.3648 to $214,748.3647. DBMONEY4 values have a precision of one ten-thousandth of a dollar.
dbmny4add, dbmny4sub, dbmny4mul, dbmny4minus, dbmnyadd, dbmnysub, dbmnymul, dbmnydivide, dbmnyminus