DB::isError() -- Determines if a variable is a DB_Error object
Описание
Checks whether a result code from a DB method is a
DB_Error object or not.
You're generally better off using
PEAR::isError()
instead of the DB specific isError().
Параметр
- mixed
$value
Variable to check
Возвращаемое значение
boolean - TRUE if $value
is a DB_Error object
Заметка
Эта функция должна вызываться статически.
Пример
Пример 34-1. Using isError() <?php
require_once 'DB.php';
$db =& DB::connect('pgsql://usr:pw@localhost/dbnam');
if (PEAR::isError($db)) {
die($db->getMessage());
}
?> |
|
HIVE: All information for read only. Please respect copyright! |
|