Group: ODBC API - Library: odbc32
How to obtain the number of rows affected by remote UPDATE, INSERT or DELETE statement
SQLRETURN SQLRowCount(
SQLHSTMT StmtHandle,
SQLINTEGER * RowCountPtr);
DECLARE SHORT SQLRowCount IN odbc32;
INTEGER StmtHandle,;
INTEGER @ RowCountPtr
StatementHandle [Input] Statement handle.
RowCountPtr [Output] Points to a buffer in which to return a row count.
SQL_SUCCESS (0), SQL_SUCCESS_WITH_INFO (1), or error codes: SQL_ERROR, SQL_INVALID_HANDLE
When SQLRowCount returns SQL_ERROR or SQL_SUCCESS_WITH_INFO, an associated SQLSTATE value can be obtained by calling SQLGetDiagRec with a HandleType of SQL_HANDLE_STMT and a Handle of StatementHandle.
When SQLExecute, SQLExecDirect, SQLBulkOperations, SQLSetPos, or SQLMoreResults is called, the SQL_DIAG_ROW_COUNT field of the diagnostic data structure is set to the row count, and the row count is cached in an implementation-dependent way.