sql >> Databasteknik >  >> RDS >> Mysql

Ändra kod från MySQL till PDO

Först om du vill ändra från mysql_* till PDO

du måste ändra alla dina koder i skriptet, inte bara en som bara inte fungerar

och om du ska ändra koderna från mysql_* till PDO

du måste ändra anslutningen till databasen genom att använda PDO

här är ett exempel på det :

// 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();
    }

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

nu när vi är klara med connecti kommer att visa dig hur du frågar och hämtar tabeller

 // 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()

Jag kommer att visa dig ett exempel för din kod

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

vi kommer att ändra detta till

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

så nu kan du använda $row->news med SUB

och nu kan du enkelt ändra dina koder till PDO



  1. 3 sätt att få schemat för en resultatuppsättning i SQL Server

  2. Sök i Microsoft SQL Server Database efter lagrad data

  3. Ersätt flera tecken i en sträng i SQL Server (T-SQL)

  4. Hur man kör ett makro från en navigeringsknapp i Microsoft Access