MySQL PDO - try {block}中应包含哪些内容?

时间:2012-06-14 19:05:41

标签: php mysql pdo

所以我正在学习PDO,并从标准的PHP MySQL函数转移。但是,我有一个问题。关于try {}块,究竟应该包含哪些块,以及它应该在它之外的什么?

使用$sth-> ...的所有内容是否都在try {}内?它应该是从语句第一次准备到执行的时间吗?甚至不到那个?

非常感谢任何帮助。 :)

这是我在课堂上的一个示例方法。组织得当吗?请注意我如何将所有内容放在try {}中。那是错的吗?对我来说感觉不对,但我不确定如何改变它。

protected function authorized()
{
    try
    {
        // Attempt to grab the user from the database.
        $sth = $dbh->prepare("
            SELECT COUNT(*) AS num_rows
            FROM users
            WHERE user_id = :user_id
            ");

        $sth->bindParam(':user_id', $this->user_id);
        $sth->execute();

        // Check if user exists in database.
        if ($sth->fetch()->num_rows > 0)
        {
            // User exists in database, and is therefore valid.
            return TRUE;
        }
        else
        {
            // User does not exist in database, and is therefore invalid.
            return FALSE;
        }
    }
    catch (PDOException $e)
    {
        pdo_error($e);
    }
}

1 个答案:

答案 0 :(得分:8)

try catch应该在函数之外

<?php

protected function authorized() {
    // Attempt to grab the user from the database.
    $sth = $dbh->prepare("
            SELECT COUNT(*) AS num_rows
            FROM users
            WHERE user_id = :user_id
            ");

    $sth->bindParam(':user_id', $this->user_id);
    $sth->execute();

    // Check if user exists in database.
    if ($sth->fetch()->num_rows > 0) {
        // User exists in database, and is therefore valid.
        return TRUE;
    }
    else {
        // User does not exist in database, and is therefore invalid.
        return FALSE;
    }
}

...

try {
    authorized()
}
catch (PDOException $e) {
    pdo_error($e);
}

不要处理方法内部的异常。您尝试 方法捕获结果异常(如果发生)。