L3 Info : PHP et Applications Web
 
◃  Ch. 5 PDO : PHP Data Object  ▹
 

Édition de tables


    try {
    include('dsn.php');

    $dbh->exec('INSERT INTO livre VALUES(117, \'La lune disparue\', NULL)');
    $dbh->exec('INSERT INTO livre VALUES(118, \'Retour à jamais\', NULL)');
    $dbh->exec('INSERT INTO livre VALUES(119, \'Le visage du démon\', NULL)');
    $dbh->exec('INSERT INTO livre VALUES(120, \'Programme spécial\', NULL)');

    $nb = $dbh->exec('DELETE FROM livre WHERE liv_num > 116');

    echo "<p>$nb enregistrements ont été supprimés.</p>\n";


    } catch (PDOException $e) {
    print "<br />Erreur !: " . $e->getMessage() . "<br/>";
    die();
    }

Résultat

4 enregistrements ont été supprimés.