0
votes
1answer
15 views
retrieval of user-supplied data: any benefit for prepared statements
Prepared statements are good to prevent sql injection when the user supplies data and we use that data for db insertion or just even to structure the query. But is really any benef …
1
vote
3answers
488 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 PD …
2
votes
5answers
104 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 …
4
votes
1answer
42 views
Precision loss whilst inserting a double into MySQL through PDO
Hi All,
I've run into this really annoying behavior and I want to know if I'm doing something wrong, or if this is intentional (and if so, why).
Whenever I have a variable in php …
1
vote
2answers
60 views
pdo database abstraction
Hello,
Can someone help me to see what is going wrong with this setup
I build the @sql query in the function below like this.
The extra quotes are setup in the conditions array.
…
0
votes
1answer
38 views
Table being locked during multiple ajax calls to PHP PDO pages?
EDIT: The problem turned out to be something completely different than what I thought it was. The page that retrieved the job status did a user authentication check, and the proble …
2
votes
5answers
111 views
Check if a database table exists using php/pdo
Hi,
I want to check if a table with a specific name exists in a database i've connected to using php and pdo.
It has to work on all database backends ... MySQL, SQLite, ...
best …
1
vote
1answer
38 views
PDO execute problem
I have faced a problem .I want to select all rows by executing this function:
public function executeQuery($query,$fetch_mode=null) {
$rs = null;
if ($stmt = $thi …
0
votes
2answers
43 views
Cannot instantiate a PDO object in PHP MVC framework
Hello,
Can anyone help me with this?
I have this function in a singleton class. The error it is giving me back is that it cannot find the class.
First I thought it had something …
0
votes
1answer
14 views
pdo binding asc/desc order dynamically
Let's say I have 2 pdo statements that differ only in order (asc vs. desc)
$stmt1 = $po->prepare("SELECT * FROM tabname WHERE categ=:categ ORDER BY field1 DESC");
$stmt2 = $po- …
0
votes
3answers
54 views
reducing mysql statements that differ only in ORDER BY field name
I'm trying to sort data by different fields ascending and descending. But I have different mysql pdo statements for the 4 fields I have (8 queries total):
$stmt1 = $po->prepare …
2
votes
2answers
122 views
PHP PDO prepared statements
I was told today that I should really be using PDO and prepared statements in my application. Whilst I understand the benefits, I am struggling to understand how I implement them i …
0
votes
3answers
59 views
Fetching single row, single column with PDO
I have a mysql query that targets a single column in a single row
"SELECT some_col_name FROM table_name WHERE user=:user"
After I execute the statement $stmt->execute(); how …
0
votes
3answers
77 views
PDO mysql: How to know if insert was successful
I'm using PDO to insert a record (mysql and php)
$stmt->bindParam(':field1', $field1, PDO::PARAM_STR);
$stmt->bindParam(':field2', $field2, PDO::PARAM_STR);
$stmt->execut …
0
votes
1answer
33 views
Storing PDO details in php.ini
According to the PDO documentation, you can store database login details in php.ini, away from the php file (example 3). But it does not explain how to store username and password, …
