我使用以下类来创建和访问PDO数据库连接:
class DBCxn {
// What Data Source Name to connect to?
public static $dsn='mysql:host=localhost;dbname=dbname';
public static $user = 'root';
public static $pass = 'root';
public static $driverOpts = null;
// Internal variable to hold the connection
private static $db;
// no cloning or instantiating allowed
final private function __construct() {}
final private function __clone() {}
public static function get() {
// Connect if not allready connected
if (is_null(self::$db)) {
self::$db = new PDO(self::$dsn, self::$user, self::$pass, self::$driverOpts);
}
// Return the connection
return self::$db;
}
}
当我尝试以下列方式访问它并且提供的查询失败(tes而不是test)时,它不会抛出异常:
$db = DBCxn::get();
try {
foreach($db->query('SELECT * from tes') as $row) {
print_r($row);
}
$db = null;
} catch (PDOException $e) {
print "Error!: " . $e->getMessage() . "<br/>";
die();
}
代码返回警告:为foreach()提供的参数无效
为什么没有抓住异常?
答案 0 :(得分:2)
PHP生成的警告和错误(例如您收到的无效参数警告)不总是异常。即使它们是,您也是专门捕获PDOException
,而无效的参数不是PDOException
。
PDO::query通常会返回false(因此foreach会抱怨无效参数)。要引发异常,您还应该调用
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
在进行查询之前。