PDO (PHP Data Objects) is a database abstraction layer for PHP.

learn more… | top users | synonyms

2
votes
0answers
19 views

PDO returns integer columns as String in PHP5.4

First of all, I am aware that there are various similar questions on SO such as this and this. However, when I fetch values from a table, integers are always fetched as string. I am using PHP5.4 ...
0
votes
0answers
18 views

Loggin' try-catch transactions

My code is try{ $this->_db->beginTransaction(); $stmt = $this->_db->prepare("..."); $stmt->execute(array($var1, ...
0
votes
1answer
31 views

PHP Fatal error: Uncaught exception 'PDOException'

I am trying to make a directory list using jQueryUI tabs and menu widgets. I have got the following code for obtaining the directory. <?php $menu = ''; $charTabs = '<div ...
0
votes
2answers
14 views

Catchable fatal error: Object of class PDOStatement could not be converted to string in D

i have a problem that really warried me i create a website and I want my users first connect to the site, and then they fill information in a table, and then save the data and redisplay them by id ...
0
votes
0answers
7 views

mssql + dblib + PHP $res->nextRowset() fails

I have stored procedure in my SQl Server Database. This procedure returns a few results sets. 2 first results is an integers, and third (last) result is a table. I have an issue when i'm trying to ...
0
votes
1answer
14 views

validate with jquery and modify MSSQL with php

I recently tried to use the PDO classes of php with MSSQL. I have a form with textboxes and a submit button. Now what I like to do is to do the validation with jQuery to let it go faster. Whenever ...
2
votes
1answer
16 views

could not find oci pdo driver in windows

We installed apache and php on windows server 2008 to try to be connected with oracle database with php command. We inserted in php.ini the following lign : extension_dir. But when we tried to connect ...
0
votes
0answers
10 views

cakephp. IIS7 windows hosting on Godaddy

Godaddy support team told me "PDO is not supported on a Windows hosting account". So i want to know is there any other way around to connect with mysql without using PDO.
0
votes
1answer
9 views

daily sales and qty of users report in mysql+PDO

I don't know how show the quantity of users(pacientes) per day the admin (doctor) watch it.. I have this daily report which works in print me the total sales in each day but if I need to show the qty ...
0
votes
1answer
19 views

Splitted pages highlighting with php possible?

I've got a page that gets the latest news from my database. There are a lot of rows so i split the pages. It works just fine but how can i highlight on which page they are? Here is the code ...
1
vote
1answer
17 views

Cannot access protected property Illuminate\Database\MySqlConnection::$pdo

What is this error and how to catch it? Cannot access protected property Illuminate\Database\MySqlConnection::$pdo Heres my code: if($user->save()) { try { ...
3
votes
3answers
41 views

Prepared PDO (MySQL) update statement

I'm curious what I'm doing wrong. To start off; I'm getting the infamous SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens Now; what I'm ...
0
votes
0answers
23 views

Not able to execute MS Sql server 2008 stored procedure using PDO - PHP

Following is my php code : <?php $startTime = 13700658; $endTime = 13716658; try { $dbh = new PDO('sqlsrv:Server=localhost;Database=<serverName>'); $sql = "{Call mySprocName ('@startTime' = ...
2
votes
1answer
53 views

no response from AJAX [closed]

I'm going nuts with this issue and have no idea what is wrong. What i'm trying to do is a simple AJAX call to get URLs of images and thumbnails for current menu from database. I have a function inside ...
2
votes
2answers
36 views

2 identical elements returned in array, after mysql query, why?

Ive made a mysql query using PDO like this $timestamp_query = "SELECT timestamp FROM change_me;"; foreach ($conn->query($timestamp_query) as $times ) { print_r($times); echo ...
0
votes
2answers
23 views

Using php/pdo to display sql data on website, no luck

I know this is probably something simple, but I have searched for hours the past few days and I'm ready to jump out of my one-story building. Have a basic site for testing, literally nothing on it ...
0
votes
2answers
36 views

PHP/MySQL/PDO - Login form not recognising existing users

My login form isn't recognising existing users. The passwords I have stored in the database are encrypted using PHP's crypt() function. When the user registers their password is also encrypted and ...
0
votes
1answer
21 views

prepare statement with bindvalue

I just recently started using PDO, not that much experience with it, but I recently crashed into an annoying problem. I am trying to use bindValue with a fetch statement to retrieve informatie from a ...
1
vote
3answers
26 views

Not inserting data to database from link

So when someone press this link, it should insert all the data from that text id to a new table but with the username who clicked it and the id of the text the user pressed. The problem is, when a ...
0
votes
4answers
29 views

Why does PDO returns two array keys?

I am using a simple SELECT in PDO: $status = 'subscribed'; $statement = $pdo->prepare("select id_user from user where status = :status"); $statement->bindParam(':status', $status); ...
0
votes
1answer
32 views

mysql php PDO query multiple AND

I want to execute the following query on mysql DB, using PHP-PDO. SELECT count(id) FROM view_id WHERE id=@id and id_a='1' and id_b='1' and id_c='3' and id_d='2' However when I run on the database ...
-4
votes
0answers
16 views

convert pdo (save ,delete,insert, update) to php mysql standard [closed]

This is the way pdo connect to sqlite to update,delete,insert . try { //open the database $db = new PDO('sqlite:cars.sqlite'); //will create the file in current directory. Current directory must ...
0
votes
1answer
11 views

bindParam or binValue will not work

Hi It seems that both bindParam or bindValue methods will not work. Please advise. I tried to bind the $dbname to dbtest. It does not seem to work! bindParam $dbname = "test1"; ...
-1
votes
1answer
44 views

Information not being put into database [closed]

Here's what I have at the top of the page, gathering the information from the tables in the database: include_once '../assets/database.php'; $a = $_GET['a']; $username = $_SESSION['username']; ...
0
votes
1answer
38 views

Displaying chart data from a database

Im following the instructions in http://docs.highcharts.com/#preprocessing-data-from-a-database to display some data comming from a database using php PDO and mysql but i only get slices when i show ...
0
votes
1answer
51 views

PDO/PHP: Better option for foreach [closed]

With the current code, it's very inefficient, confusing and seems to lack performance. What could I improve in the MySQL Querying, or PHP to make this code easier and less [ all over the place ]. ...
0
votes
1answer
16 views

PDO::quote with nulls, bools, and more

PDO::quote always seems to slap on two single quotes regardless of the type of value I pass it, or the parameter type I set. e.g., $x = null; echo $pdo->quote($x,PDO::PARAM_NULL); // '' Thus ...
0
votes
2answers
14 views

Binding number to the LIMIT of a PDO query with PHP [duplicate]

I am having an issue with PDO which I have seen discussed around but the different solutions provided did not work for me. It is when binding a number to set the LIMIT of a SQL query. Here is the ...
0
votes
2answers
24 views

PDO ->prepare on mysql query won't work

I have a mysql query that I'd like to wrap-up like this: $sql = $dbh->prepare("SELECT * FROM log"); Then, I execute it like this: $sql->execute(); , now my question is why can't I use it into a: ...
0
votes
0answers
27 views

Stop php re-proccess all when hit refresh

I'm here again with high traffic problems, i'm having a problem with "Sleep" thread on Mysql, after searching a lot i'm on my way to solve this problem. I make sure db connection is killed after the ...
0
votes
4answers
58 views

Fatal error: Call to undefined function UNIX_TIMESTAMP() in /

I am trying to change my database from MySQL to PDO. It is difficult and have to solve a lot of errors. I don't know how to solve this error. Fatal error: Call to undefined function ...
0
votes
1answer
18 views

PHP MySQL importing uploaded csv errors

I am extremely new to php/mysql but got stuck creating a page that allows my user to upload a csv file and replace changed data/insert new data. I know my DB connection works as I have another page to ...
0
votes
1answer
32 views

PDO Select from table where color Like Concat

I have a code that is supposed to SELECT items from a table where the fields color_base1 and color_base2 are similar to specific colors. However, currently my code is just returning all the fields in ...
0
votes
2answers
24 views

Dynamic SQL and bindParam in PDO

I have a situation like this: if ( $level == 1 ) { $type = '0'; } elseif ( $level == 2 ) { $type = '1'; } elseif ( $level == 3 ) { $type = '(2 or type = 1)'; // This ...
-1
votes
1answer
18 views

setAttribute to PDO using ODBC Driver?

i am trying to set some attributes to my pdo connection, i am using the odbc drvier that is connecting to SQL Server and i get unknown attribute $db = new PDO("odbc:Driver={SQL ...
0
votes
1answer
17 views

Codeigniter loading library after session is set

I am using codeigniter with sqlite and I have created a new library for connecting the sqlite database. The sqlite database will connect only if the session is set. LIBRARY (userdb) $CI =& ...
-1
votes
0answers
69 views

Javascript popup in PHP while loop display issues

The problem i'm currently having is that when i click on the onClick popup text displayed from my folder table and match the folder_name from my folder table to name_folder from my picture table my ...
0
votes
3answers
34 views

Performance questions for using MySQL asynchronously with AJAX

This isn't really a problem per se, but more of a question about efficiency. Basically, I have an index.php file that handles the main code for the site I'm building. Within that code are several ...
-2
votes
0answers
49 views

cannot query with PDO inside php class [closed]

In using the following code: this is dbQuery.php: include_once ('dbconnect.php'); class dbQuery { private $db; public function __contruct(){ $this->db = new Connection(); ...
0
votes
2answers
31 views

Getting data and looping with PDO / PHP [closed]

I am having problems displaying the data, the page is loading fine with no error and the thead of the table is loading but its not showing any data and cannot see whats wrong. Second pair of eyes ...
0
votes
1answer
21 views

PHP PDO Prepare & Execute Statement

when I run the function that includes this code I get null returned. Can anybody see my issue? $statement = $connect->prepare("UPDATE pages " . "SET " . "pageTitle = :pageTitle, " . ...
-3
votes
0answers
33 views

Can I create MySQL tables using class definitions? [closed]

Just starting with PDO programming I was wondering whether it's possible to create MySQL tables using a class definition? I tried to code below, but got a parse error.. Thank you for your help in ...
2
votes
1answer
31 views

pdo defining a function an then using it in a select statement

My query is somewhat like this : CREATE FUNCTION func ... ; SELECT * FROM ....; I'm using php's PDO which doesn't allow more than 1 statements in a $pdo->query() , so instead I decided that I'd ...
3
votes
2answers
46 views

PDO truncate string prameters

I have this function to insert data to a table: public static function insertSistema($name,$description,$created_at, $updated_at, $img_file_name, $img_content_type, $img_file_size, $img_updated_at, ...
2
votes
1answer
26 views

Insert value to MySQL table safely using PDO

Would this protect my INSERT from SQL Injections? and can I somehow shorten this code to make it look neater? $db = new PDO('mysql:host=XXXXXXXXXX;dbname=XXXXXXXXX', 'XXXXXXXXX', 'XXXXXXXXXX'); // ...
-1
votes
2answers
65 views

JQuery result is blank [closed]

I am having problems to get this not to show blanks. Basically when you select a length from the length Select option it runs the jquery below but the problem is that it doesn't show the result on the ...
0
votes
2answers
27 views

newbie PDO query display issue

newbie PDO question... I think (hard to tell - buried in a wrapper class) I am doing a select query using: PDO::FETCH_ASSOC wrapper: return $pdostmt->fetchAll(PDO::FETCH_ASSOC); I am ...
-1
votes
1answer
31 views

pdo if statments are not working when checking the value

This is a code that I designed to check if username matches with the email in the database. If not check the username. if it does not exist, check the email. If it does not exist, create a new ...
0
votes
2answers
14 views

try and catch PDO because he might escape with exception $e

Every tutorial online uses try and catch on any insert and update query by PDO. However, all the tutorial do not stop and explain why the value in pdoexception is $e? try { $db->query('SELECT ...
0
votes
0answers
21 views

PHP/MySQL select not finding most recent row after transactional insert

I'm developing a website that allows its owner to add events (comprised of a name, date, and location) to one of the pages. I'm using a transactional INSERT to add each event, after which I ...

1 2 3 4 5 109