Return the type of the current row.
STATUS DBROWTYPE(dbproc) DBPROCESS *dbproc;
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 server.
Three different types of values can be returned:
If the current row is a regular row, REG_ROW is returned.
If the current row is a compute row, the computeid of the row is returned. (See the dbaltbind reference page for information on the computeid.)
If no rows have been read, or if the routine failed for any reason, NO_MORE_ROWS is returned.
This macro tells you the type (regular or compute) of the current row. Usually you already know this, since dbnextrow also returns the row type.