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.

How to bind SQL variables in Php? I want to bind variables instead of just building SQL strings. Anyway to do this in Php?

either MySQL or PostgreSQL answers would help.

Thanks

share|improve this question
Binding records from a table to objects in your application or "binding" variables in PHP to variables in SQL? – Peter Lindqvist Dec 7 '09 at 13:59
"binding" variables in PHP to variables in SQL :) – Robert Gould Dec 7 '09 at 14:12

4 Answers

up vote 4 down vote accepted

There's e.g. PDO.
An introduction to pdo and prepared statements (including bound parameters) is located at http://docs.php.net/pdo.prepared-statements

share|improve this answer
carefull with PDO::bindParam: stackoverflow.com/questions/833510/… – Strae Dec 14 '09 at 13:21

There are a couple of flavors. I believe the more savvy individuals here will push for you to use PDO prepared statements. There is also a sprintf() version.

PDO

An answer has already been discussed on StackOverflow here.

SPRINTF

$sql = sprintf('SELECT * FROM table WHERE id = %d AND field = %s',
               $id,
               mysql_real_escape_string($value));
share|improve this answer
how sprintf is a bind variables replacemet? there are no DB checks on the variables content. This is as not safe as the plain text stuff – goryachev Sep 30 '12 at 19:31

You should read on the MySQL Improved Extension (MySQLi) at http://php.net/manual/en/book.mysqli.php , and on prepared statements

share|improve this answer

For Postgres specifically - pg_query_params (and pg_send_query_params) is the most primitive form of binding but still very useful.

And then there's PDO but the others already mentioned it.

share|improve this answer
thanks for the postgres info! – Robert Gould Dec 7 '09 at 14:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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