Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have changed the following code:

mysql_connect('localhost','username','password');
mysql_select_db('pl') or die( "Unable to select database"); 

to

PDO('mysql:host=localhost;dbname=pl;charset=UTF-8', 'username', 'password');

Is it correct or do I have to pass this to a variable (in the PDO tutorial it is being passed to a variable db; what is the purpose of that? http://wiki.hashphp.org/PDO_Tutorial_for_MySQL_Developers)

share|improve this question
2  
You obviously need to be able to access the database connection you just opened... – ThiefMaster Dec 23 '12 at 16:08

closed as too localized by hakre, PeeHaa 埽, Michael Berkowski, Charles, cspray Dec 23 '12 at 19:52

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

up vote 5 down vote accepted

Modify your code from:

PDO('mysql:host=localhost;dbname=pl;charset=UTF-8', 'username', 'password');

To:

$Connection = new PDO('mysql:host=localhost;dbname=pl;charset=UTF-8', 'username', 'password');

and your basic query structure will revolve around your $Connection variable. Example:

$Query = $Connection->query("LIST TABLES");
$Results = $Query->fetchAll();

which is kind of like:

$Query = mysql_query("LIST TABLES");
$Results = mysql_fetch_array($Query);

Read these manuals:

Construct A connection (Like mysql_connect/mysql_select_db)

PDO Query (Like mysql_query();

Prepared Statements

Execute Prepared Statements

PDO FetchAll (like mysql_fetch_array)

Entire PDO Manual

share|improve this answer
What is the replacement for mysql_real_escape_string in PDO? – REJOLA Dec 23 '12 at 16:27
2  
Use prepared statements instead. mysql_real_escape_string and similar techniques are messy and don't deal with all injections. – Kitsune Dec 23 '12 at 16:31
2  
@user1925118 -- Kitsune is correct with using Prepared statements; but there is also a range of binds available with the PDO API, which give you enhanced Protection – Daryl Gill Dec 23 '12 at 16:44

This is better, as it can catch exception if something goes wrong (so, I have been told)

try {
    $conn = new PDO('mysql:host=localhost;dbname=mydb', 'root', 'test', array(PDO::ATTR_EMULATE_PREPARES => false, PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION));
} catch(PDOException $e) {
    echo 'ERROR: ' . $e->getMessage();
}

obviously, you need to change the mydb, root and test.

Now, the only thing that remains is to call $conn when ever your do you queries.

Remember, catching an exception is a bit like the or die(mysql_error()); part of sql connection. But, this one will do it in a way, any error will not show your entire file location, which could be a security threat.

Additionally, I would suggest you take a look at these tutorials to lean more:

  1. PHP Database Access: Are You Doing It Correctly?
  2. PDO Tutorial for MySQL Developers
share|improve this answer
Thank you for your reply! – REJOLA Dec 23 '12 at 16:27
-1: exceptions have nothing in common with die()/exit – tereško Dec 23 '12 at 16:47

Not the answer you're looking for? Browse other questions tagged or ask your own question.