Tagged Questions

PDO is a PHP extension that serves as a data access abstraction layer for accessing databases.

learn more… | top users | synonyms

141
votes
16answers
25k views

mysqli or PDO - what are the pros and cons?

In our place we're split between using mysqli and PDO for stuff like prepared statements and transaction support. Some projects use one, some the other. There is little realistic likelihood of us ever ...
41
votes
5answers
7k views

PHP PDO: Can I bind an array to an IN() condition?

I'm curious to know if it's possible to bind an array of values to a placeholder using PDO. The use case here is attempting to pass an array of values for use with an IN() condition. I'm not very ...
37
votes
5answers
8k views

Are PDO prepared statements sufficient to prevent SQL injection?

Let's say I have code like this: $dbh = new PDO("blahblah"); $stmt = $dbh->prepare('SELECT * FROM users where username = :username'); $stmt->execute( array(':username' => ...
27
votes
6answers
4k views

PDO Prepared Statements

Is there a way to get the raw SQL string executed when calling PDOStatement::execute() on a prepared statement? For debugging purposes this would be extremely useful.
24
votes
2answers
4k views

PDO: bindParam versus bindValue

What is the difference between bindParam and bindValue for PDO in PHP? http://www.php.net/manual/en/pdostatement.bindparam.php http://www.php.net/manual/en/pdostatement.bindvalue.php
23
votes
7answers
8k views

PHP PDO vs normal mysql_connect

Which one should be used php PDO or normal mysql_connect to execute database query through PHP. Which one is faster? One of the big benefits of PDO is that the interface is consistent across ...
16
votes
6answers
3k views

In PHP with PDO, how to check the final SQL parametrized query?

In PHP, when accessing MySQL database with PDO with parametrized query, how can you check the final query (after having replaced all tokens)? Is there a way to check what gets really executed by the ...
14
votes
6answers
2k views

When *not* to use prepared statements?

I'm re-engineering a PHP-driven web site which uses a minimal database. The original version used "pseudo-prepared-statements" (PHP functions which did quoting and parameter replacement) to prevent ...
13
votes
4answers
2k views

What is difference between mysql,mysqli and pdo?

What is difference between mysql,mysqli and pdo ? Which one is the best suited to use with PHP-MYSQL?
12
votes
2answers
366 views

PDO much slower than mysql query?

I am using a PDO object in PHP to run MYSQL queries, and I have been trying to work on a query to speed it up. The query is as follows, as seen in my PHP file: $query = "SELECT SQL_NO_CACHE ...
12
votes
3answers
1k views

What are the disadvantages of using persistent connection in PDO

In PDO, a connection can be made persistent using the PDO::ATTR_PERSISTENT attribute. According to the php manual, these connections are not closed at the end of the script, but are cached and re-used ...
12
votes
4answers
5k views

How to debug PDO database queries?

Before moving to PDO, I created SQL queries in PHP by concatenating strings. If I got database syntax error, I could just echo the final SQL query string, try it myself on the database, and tweak it ...
12
votes
7answers
7k views

PDO Prepared Inserts multiple rows in single query

I am currently using this type of SQL on MySQL to insert multiple rows of values in one single query: INSERT INTO tbl (key1,key2) VALUES ('r1v1','r1v2'),('r2v1','r2v2'),... On the readings on ...
12
votes
2answers
4k views

Why is PHP PDO DSN a different format for MySQL versus PostgreSQL?

When I connect to a MySQL database using PDO, the way I need to connect is: $pdoConnection = new PDO("mysql:host=hostname;dbname=databasename",user,password); But, for PostgreSQL, the DSN is more ...
11
votes
4answers
5k views

PDO::fetchAll vs. PDO::fetch in a loop

Just a quick question. Is there any performance difference between using PDO::fetchAll() and PDO::fetch() in a loop (for large result sets)? I'm fetching into objects of a user-defined class, if ...
11
votes
3answers
3k views

PDO::PARAM for type decimal?

I have 2 database fields `decval` decimal(5,2) `intval` int(3) I have 2 pdo queries that update them. The one that updates the int works ok $update_intval->bindParam(':intval', $intval, ...
11
votes
5answers
6k views

Why is PDO better for escaping MySQL queries/querystrings than mysql_real_escape_string?

I've been told that I'd be better using PDO for MySQL escaping, rather than mysql_real_escape_string. Maybe I'm having a brain-dead day (or it may be the fact I'm by no stretch of the imagination a ...
11
votes
3answers
6k views

How do I insert NULL values using PDO?

I'm using this code and I'm beyond frustration: try { $dbh = new PDO('mysql:dbname=' . DB . ';host=' . HOST, USER, PASS); $dbh->setAttribute(PDO::ATTR_ERRMODE, ...
11
votes
4answers
2k views

Do SQL connections opened with PDO in PHP have to be closed

When I open a MySQL connection in PHP with just PHP's built-in MySQL functions, I do the following: $link = mysql_connect($servername,$username,$password); mysql_select_db($dbname); //queries etc. ...
11
votes
2answers
5k views

How do I create a PDO parameterized query with a LIKE statement in PHP?

Here's my attempt at it: $query = $database->prepare('SELECT * FROM table WHERE column LIKE "?%"'); $query->execute(array('value')); while ($results = $query->fetch()) { echo ...
10
votes
4answers
6k views

Php PDO::bindParam data types.. how does it work?

im wondering what the declaration of the data type in the bind parameter (or value) is used for... I mean, i thougth that if i define a param like int, PDO::PARAM_INT, the param must be converted in ...
9
votes
5answers
247 views

Has PDO a bad side?

Everything I've read so far about PDO (PHP Data Objects) is almost too good to be true. I mean: Its faster then mysql or mysqli. It has the same syntax for multiple database drivers. with prepared ...
9
votes
2answers
186 views

Why does PDO print my password when the connection fails?

I have a simple website where I establish a connection to a Mysql server using PDO. $dbh = new PDO('mysql:host=localhost;dbname=DB;port=3306', 'USER', 'SECRET',array(PDO::MYSQL_ATTR_INIT_COMMAND ...
9
votes
2answers
389 views

Why are certain types of prepared queries using PDO in PHP with MySQL slow?

When using SELECT * FROM table WHERE Id IN ( .. ) queries with more than 10000 keys using PDO with prepare()/execute(), the performance degrades ~10X more than doing the same query using mysqli with ...
9
votes
2answers
400 views

PDO with “WHERE… IN” queries

I'm reworking some PHP code to use PDO for the database access, but I'm running into a problem with a "WHERE... IN" query. I'm trying to delete some things from a database, based on which items on a ...
9
votes
3answers
6k views

Installing PDO-drivers for PostgreSQL on Mac (using Zend for eclipse)

How can I get PDO to work on my mac (os x 10.5)? I'm using the built in php and php in Zend/Eclipse. Can't seem to find useful drivers for it at all.
9
votes
7answers
1k views

Persistent DB Connections - Yea or Nay?

I'm using PHP's PDO layer for data access in a project, and I've been reading up on it and seeing that it has good innate support for persistant DB connections. I'm wondering when/if I should use ...
8
votes
1answer
83 views

Are there any issues with always preparing SQL statements with PHP?

Is there any issue with always preparing SQL statements with PHP instead of executing them directly? Not sure if database system matters, but it's DB2 on System i.
8
votes
1answer
536 views

PDO support for multiple queries (PDO_MYSQL, PDO_MYSQLND)

I do know that PDO does not support multiple queries getting executed in one statement. I've been Googleing and found few posts talking about PDO_MYSQL and PDO_MYSQLND. PDO_MySQL is a more ...
8
votes
5answers
1k views

Should I use prepared statements for MySQL in PHP PERFORMANCE-WISE?

I understand the security benefits of prepared statements in MySQL. No need to cover that topic here. I'm wondering about the performance aspect of them. Now, I know when a query using a prepared ...
8
votes
2answers
2k views

Use of PDO in classes

I have a few classes that perform some MySQL queries and prepared statements. However, I am lost in how to incorporate my PDO object within those classes. For example, I want to do something like ...
8
votes
3answers
5k views

PHP PDO prepared statement — mysql LIKE query

This is my first post to stack Overflow, but I find the existing body of knowledge very helpful. At any rate, here's my issue: I am trying to do a search through php's PDO class (mysql driver). I ...
7
votes
2answers
109 views

How do I know if a Prepared Statement is being Cached?

I have been reusing the same variable $stmt in my PHP script to write prepared statements: $stmt = $dbh->prepare("SELECT column_A FROM Table1 WHERE id=?"); $stmt->bindValue(1, $id, ...
7
votes
2answers
181 views

Get Last Executed Query in PHP PDO

I would like to know what query is executed using PHP PDO. I have: <?php try { $DBH = new PDO("mysql:host=localhost;dbname=mytable", 'myuser', 'mypass'); } catch(PDOException $e) { ...
7
votes
2answers
254 views

PHP PDO code to insert in MySQL db fails

I am having difficulties troubleshooting some simple PHP code to insert a record in a MySQL table. This code entered directly into WAMP works fine: INSERT INTO `users` (`userName`,`userEmail`) ...
7
votes
2answers
1k views

PDO::exec() or PDO::query()?

I used to have this as one of the options (4th param) passed to PDO constructor: $aOptions[PDO::MYSQL_ATTR_INIT_COMMAND] = "SET NAMES utf8"; But just found that it does not work on certain php ...
7
votes
3answers
583 views

Is is possible to set a default PDO fetch mode?

Before I retrieve data I always have to type: $STH->setFetchMode(PDO::FETCH_OBJ); In the interest of making my code more readable it would be great if I could set a default mode somewhere.... ...
7
votes
10answers
2k views

Insert/update helper function using PDO

I have a very simple helper function to produce SET statement for traditional plain mysql driver usage: function dbSet($fields) { $set=''; foreach ($fields as $field) { if ...
7
votes
1answer
412 views

Is there a performance difference between PDO fetch statements?

like in /* Exercise PDOStatement::fetch styles */ print("PDO::FETCH_ASSOC: "); print("Return next row as an array indexed by column name\n"); $result = $sth->fetch(PDO::FETCH_ASSOC); ...
7
votes
4answers
1k views

How do I set ORDER BY params using prepared PDO statement?

I'm having problems using params in the ORDER BY section of my SQL. It doesn't issue any warnings, but prints out nothing. $order = 'columnName'; $direction = 'ASC'; $stmt = ...
7
votes
2answers
860 views

Getting a PHP PDO connection from a mysql_connect()?

I have a legacy PHP/MySQL app that calls mysql_connect(). Tons of existing downstream code makes mysql_query() calls, either directly or through wrappers, using this connection. For new code that I ...
7
votes
1answer
7k views

Error when connecting to MySQL using PHP/PDO

My code was working all fine yesterday and today it suddenly just don't want to connect to my database. I have changed no settings on it or on the code and I haven't updated any software either. All I ...
7
votes
4answers
2k views

Escaping field names in PDO statements

I am currently building a query where both the field and value parts possibly consist of user inputted data. The problem is escaping the fieldnames. I'm using prepared statements in order to ...
7
votes
2answers
1k views

MySQL check if a table exists without throwing an exception

What is the best way to check if a table exists in MySQL (preferably via PDO in PHP) without throwing an exception. I do not feel like parsing the results of "SHOW TABLES LIKE" et cetera. There must ...
7
votes
5answers
13k views

Error on creating connection to PDO in PHP

Today, I removed and reinstalled the latest version of lampp in order to move to php 5.30, and suddenly a very simple app is failing to connect to the mysql database. I'm using PDO to connect, and ...
7
votes
7answers
10k views

How to make PDO run SET NAMES utf8 each time I connect, In ZendFramework

How to make PDO adapter run SET NAMES utf8 each time I connect, In ZendFramework. I am using an INI file to save the adapter config data. what entries should I add there? If it wasn't clear, I am ...
7
votes
4answers
3k views

PDO MySQL Driver on Mac

I have a mac with a custom PHP 5 install that built from about a year ago. I remember it took all Sunday and I had to compile about 20 times to get it right. The MySQL I have is from entropy and was ...
7
votes
2answers
2k views

Can PHP PDO Statements accept the table name as parameter?

Why can't I pass the table name to a prepared PDO statement? $stmt = $dbh->prepare('SELECT * FROM :table WHERE 1'); if ($stmt->execute(array(':table' => 'users'))) { ...
6
votes
1answer
234 views

PDO datetime format for MSSQL/dblib

MSSQL 2005 database has collation "German_Phonebook_BIN" (but that's not important). Connection to db is done via PDO and FreeTDS (using PHP under Debian Squeeze). When I try to select datetime values ...
6
votes
2answers
375 views

PDO Connection Test

I am writing an installer for one of my apps and I would like to be able to test some default database settings. Is this possible using PDO to test valid and invalid database connections? I have the ...

1 2 3 4 5 32