Mysql
 sql >> Database >  >> RDS >> Mysql

PHP PDO MySQL Struttura del codice di transazione

Alcune note generali:non utilizzare bindParam() a meno che non si utilizzi una procedura che modifichi il valore del parametro Pertanto, use bindValue() . bindParam() accetta il valore dell'argomento come variabile referenziata. Ciò significa che non puoi eseguire $stmt->bindParam(':num', 1, PDO::PARAM_INT); - genera un errore. Inoltre, PDO ha le sue funzioni per il controllo delle transazioni, non è necessario eseguire query manualmente.

Ho riscritto leggermente il tuo codice per far luce su come utilizzare PDO:

if($_POST['groupID'] && is_numeric($_POST['groupID']))
{
    // List the SQL strings that you want to use
    $sql['privileges']  = "DELETE FROM users_priveleges WHERE GroupID=:groupID";
    $sql['groups']      = "DELETE FROM groups WHERE GroupID=:groupID"; // You don't need LIMIT 1, GroupID should be unique (primary) so it's controlled by the DB
    $sql['users']       = "DELETE FROM users WHERE Group=:groupID";

    // Start the transaction. PDO turns autocommit mode off depending on the driver, you don't need to implicitly say you want it off
    $pdo->beginTransaction();

    try
    {
        // Prepare the statements
        foreach($sql as $stmt_name => &$sql_command)
        {
            $stmt[$stmt_name] = $pdo->prepare($sql_command);
        }

        // Delete the privileges
        $stmt['privileges']->bindValue(':groupID', $_POST['groupID'], PDO::PARAM_INT);
        $stmt['privileges']->execute();

        // Delete the group
        $stmt['groups']->bindValue(":groupID", $_POST['groupID'], PDO::PARAM_INT);
        $stmt['groups']->execute();

        // Delete the user 
        $stmt['users']->bindParam(":groupID", $_POST['groupID'], PDO::PARAM_INT);
        $stmt['users']->execute();

        $pdo->commit();     
    }
    catch(PDOException $e)
    {
        $pdo->rollBack();

        // Report errors
    }    
}