The pdostatement tag has no wiki summary.
1
vote
2answers
57 views
Relationship between PDO class and PDOStatement class
I'm a php and mysql beginner, I'm currently self study PDO and confused some concepts:
$dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass);
$sql = "SELECT * FROM users";
$users = ...
0
votes
1answer
47 views
php pdostament fetch issue
I have a database which has two record for testing purposes...
database columns(user_id, username, password and role)....
I am using PHP PDO to communicate with database i have created a class file ...
2
votes
1answer
52 views
Is it possible to bind a PDO parameter to the member variable of an object?
Using PDOStatement::bindParam(), one can bind a parameter to a variable—which is especially useful when a prepared statement is executed multiple times, each with different parameter values. ...
0
votes
1answer
86 views
Busy PHP connection to MYSQL?
This is a part of
PHP & MySQL Novice to Ninja, 5th Edition by Kevin Yank
Normally when we perform a SELECT query , we use the condition of a
while loop or a foreach loop to retrieve each ...
0
votes
2answers
224 views
How can I store objects in a session in PHP?
Hello I would like to store or save an object inside a session,using classes like SessionHandler or arrays $_SESSION,I've seen that it is possible if I serialize the object,and I don't want to lose ...
0
votes
1answer
193 views
PDO::Query() returning false
I'm attempting to learn and use PDO in PHP. I've come across an issue in the query() method.
I'm attempting to use $sth = $db->query("SELECT * FROM titles ORDER BY RAND() LIMIT 1"); to randomly ...
0
votes
1answer
81 views
Is this bindValue wrong?
I have a PDO statement as follows(AFAIK, PDO doesn't need data to be escaped for preparation):
$insert = "INSERT INTO `errors`(`code`,`number`,`title`,`message`) VALUES( :code, :num, :title, :err )";
...
3
votes
4answers
713 views
MySQL PDO fetchAll as array with integer index
I have a table with two columns. Table: ctgtable and columns: id and ctg. Since I am entirely moving from previous mysql_* functions to PDO, I am facing some foolish mistakes(or maybe lack of ...
1
vote
1answer
90 views
Extending PDOStatement to use default FETCH_CLASS. Expects class name as string
I've been toying with PDO to try and make a default return class for results, and also make this the default behaviour in general.
This lead me to discover that I need to extend PDOStatement so that ...
1
vote
0answers
75 views
Efficiency of re-using PDOStatements for database calls in PHP
Would it be efficient to save the PDOStatement returned by a prepare() to some class variable and then reuse that statement object rather than re-prepare when executing the same call?
Class ...
0
votes
2answers
212 views
PHP Fatal Error with PDOStatement fetchColumn()
I can't understand this error, could someone please explain it to me?
PHP Fatal error: Call to a member function fetchColumn() on a non-object in /user/dal.php on line 27
I am trying to get the ...
3
votes
1answer
349 views
PDOStatement::rowCount result when used after PDO::commit?
In the MySQL docs, there is a note about using mysql_affected_rows after a transaction commit:
http://php.net/manual/en/function.mysql-affected-rows.php
Note: Transactions
If you are using ...
1
vote
0answers
182 views
How bind ENUM type by number in PDO
Is it possible to bind MySQL ENUM type by its number in PDO satments, like:
$stm = $pdo->prepare( "insert into `my_table` (`id`, `enum_type`) values (?, ?)");
$stm->bindParam( 1, $id, ...
0
votes
1answer
461 views
try catch block not working with pdo statement and foreach
Recently I've encouraged weird error in PHP code. It's like the inner try{}catch(){} block is omited when using PDOStatement object with foreach(){}. Here is my test code which triggers this ...
2
votes
1answer
125 views
PDO::FETCH_CLASSTYPE - unexpected result
I'am at loss here. Not sure why I'm getting "stdClass". Shouldn't I be getting name from 1st column?
$sql = "SELECT cn, iso2, iso3, fid, sort FROM ct";
$stmt = $dbh->query($sql);
$result = ...
6
votes
2answers
754 views
PDO with PDOStatement reconnect on “mysql server gone” error
When mysql's wait_timeout has been exceeded, I lose connection on my PHP CLI script. I can't change wait_timeout, so how would one build a try/catch statement that reconnects when I use PDOStatement ...
0
votes
2answers
473 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 ...
7
votes
3answers
918 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, ...
0
votes
1answer
411 views
Warning: PDOStatement::execute() [pdostatement.execute]: SQLSTATE[23000]: [duplicate]
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
172 views
Advantage of using PDOStatement?
what is the difference / advantage of using PDOStatement instead of regular Mysql?
0
votes
1answer
222 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()); ...
2
votes
1answer
341 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 ...
4
votes
4answers
1k 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.
...
6
votes
2answers
4k 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: ...
40
votes
7answers
10k views
Getting raw SQL query string from 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.
