DB_common::affectedRows()

DB_common::affectedRows() -- Finds number of rows affected by a data changing query

Synopsis

integer affectedRows ()

Descripción

Number of rows affected by a data manipulation query (for example INSERT, UPDATE or DELETE). Returns 0 for SELECT queries.

Valor devuelto

integer - number of rows or a DB_Error object on failure

Lanza

Tabla 35-1. Posibles valores de PEAR_Error

Error codeError messageReasonSolution
DB_ERROR_NOT_CAPABLE DB backend not capable Function is not supported by the database backend Switch to another database system, if you really need this feature.

Nota

Esta función no puede ser llamada estáticamente.

Ejemplo

Ver

numRows(), numCols(), query(), execute(), autoExecute(), executeMultiple()