Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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.
3
votes
3answers
127 views

Variable type in PDOStatement::bindValue()

The PDOStatement::bindValue() method offers a way to specify the type of the variable bound: PDOStatement::bindValue ( $parameter , $value [, $data_type = PDO::PARAM_STR ] ) I'm wondering, ...
3
votes
2answers
2k views

List of PDOStatement::bindParam data_type parameters

Is there a list describing all of the data_type parameters you can use in PDOStatement::bindParam() ? If none, what do you commonly use, and for what type of field ? According to PHP manual: ...
2
votes
1answer
191 views

PHP: How to cast object to inherited class?

I'd like to inherit PDOStatement class and use it in my website scripts. But I am frustrated how to get required object. PDO::query returns only direct PDOStatement object and looks like there are no ...
0
votes
2answers
50 views

How to traverse the PDOStatement object i.e. fetch first, last previous next etc?

I am trying to access data again and again in a webpage. Is there a better way ? some thing like movetofirst(), movetolast(), movetoprevious(), movetonext() could be nice. right now i am retrieving ...
0
votes
1answer
161 views

Warning: PDOStatement::execute() [pdostatement.execute]: SQLSTATE[23000]: [closed]

Possible Duplicate: 1062 duplicate entry quick fix ugently required? Can anyone help with this please? Warning: PDOStatement::execute() [pdostatement.execute]: SQLSTATE[23000]: Integrity ...
0
votes
1answer
63 views

Advantage of using PDOStatement?

what is the difference / advantage of using PDOStatement instead of regular Mysql?
0
votes
1answer
126 views

php PDOStatement fetchAll second time

I do not really understand the point of PDOStatement since: $PDO = new PDO(); $PDOS = $PDO->query($sql); var_dump($PDOS->fetchAll()); //will return data var_dump($PDOS->fetchAll()); ...
0
votes
1answer
260 views

PHP PDOStatement: Fetch A Row, as the First Column as the Key of an Array

I am using PDOStatement to query the database. Whenever I get a returned row, I want it to be fetched into an array, with the $row[0] as the key, and the subsequent elements in the row as the values. ...