Mysql
 sql >> Base de données >  >> RDS >> Mysql

Changer le code de MySQL en PDO

D'abord si vous voulez changer de mysql_* à PDO

vous devrez changer tous vos codes dans le script, pas seulement un seul qui ne fonctionnera tout simplement pas

et si vous allez changer les codes de mysql_* en PDO

vous devrez changer la connexion à la base de données en utilisant PDO

voici un exemple pour cela :

// here we set the variables 
$dbhost = "localhost";
$dbname = "testcreate";
$dbuser = "root";
$dbpass = "mysql";

// here we are using ( try {} ) to catch the errors that will shows up and handle it in a nicer way
    try {
    $db = new PDO('mysql:host='.$dbhost.';dbname='.$dbname.';charset=utf-8', ''.$dbuser.'', ''.$dbpass.'');
    $db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    } catch (PDOException $e) {
        echo 'Error : <br>' . $e->getMessage();
    }
// here we set the varible for the connection = then starting the cennction with new POD();
$db = new PDO('mysql:host='.$dbhost.';dbname='.$dbname.';charset=utf-8', ''.$dbuser.'', ''.$dbpass.'');
// here we set an Attribute to handle the errors
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
// you dont need to use it in our case because we already catching the error and handling it in out way
  // here we catch the error then handling it by echo a msg and then we used
  // $e->getMessage(); to get the error msg that should be throwing in the page
    catch (PDOException $e) {
        echo 'Error : <br>' . $e->getMessage();
    }

----------------------------------------------------------

maintenant que nous en avons fini avec le connecti, nous allons vous montrer comment interroger et récupérer des tables

 // this is how we will use query
 $qr = $db->query()

 // and this is how to fetch it by taking the query variable and use the arrow then fetch 
 $ro = $qr->fetch()

je vais vous montrer un exemple pour votre code

$querytemp = mysql_query("select * from main_setting") or die (mysql_error());
$row = mysql_fetch_object($querytemp);

nous allons changer cela en

$querytemp = $db->query("select * from main_setting");
$row = $querytemp->fetch(PDO::FETCH_OBJ);

alors maintenant vous pouvez utiliser $row->news avec AOP

et maintenant vous pouvez facilement changer vos codes en PDO