Tagged Questions
0
votes
1answer
26 views
PDO Fetching Bcrypted password?
I have been a lot of troubles with my code since I first started learning something about hashing and salting passwords. First, I learn how to "hash" passwords with MD5 (Yeah, don't do that anymore), ...
0
votes
0answers
45 views
what's wrong with this simple fetch PDO statement?
What's wrong with this PDO code? It doesn't give me any results although there definitely are some results in the tip table in the database.
try{
$this->pdo = new PDO( ...
-2
votes
1answer
32 views
Why the PDO statement error comes in this code?
I have the following code, I am unable to figure out why the PDO statement error occurs, here is my code
try {
$db = new PDO("mysql:dbname=imdb","username","pwd");
...
0
votes
1answer
28 views
Short code to get 2 values from one row with php pdo
Possibly stupid question, but can not find answer.
I need to get values from two columns of the same row.
And then set variables with each value.
Here I get one value from column Number and then ...
0
votes
2answers
43 views
PDO multiple fetching of same query [duplicate]
I am fetching the results from a db with PDO::FETCH_ASSOC. The issue is that I am doing it twice in the same file. Is that a known issue? What would be the alternative?
Here is my code:
FIRST TIME
...
1
vote
1answer
37 views
PDO FETCH_INTO - only map existing properties
I'd like to know if there's a fetch method in PHP that will only map existing properties in the class?
For example if my class looks like this:
class Company {
public $id;
}
And my query like ...
-2
votes
2answers
68 views
This PDO::FETCH_ASSOC` query skips the 1rst result that's returned
I'm transitioning over to PDO prepared statements, and I'm having trouble with the syntax for a basic SELECT query with a WHILE statement.
The foreach statement below echos the correct results, but ...
0
votes
4answers
317 views
PHP PDO with foreach and fetch
The following codes:
<?php
$dbh = new PDO("mysql:host=$hostname;dbname=$dbname", $username, $password);
try {
$dbh = new PDO("mysql:host=$hostname;dbname=$dbname", $username, $password);
...
0
votes
2answers
97 views
PHP MYSQL if statement on PDO result
Have a look through the code below. This is supposed to check whether or not a database contains a given user. If the it does, it just returns true. If it doesn't, then it returns false.
Anyway, ...
0
votes
2answers
277 views
PHP-PDO fetch data using loop structure
I am practicing using PDO fetch methods to retrieve data from the table. I would like to a counter in a while loop to retrieve data one row at a time. Please give me some advise how to accomplish ...
-1
votes
3answers
40 views
fetch() not returning first row
I am trying to update code that has been written using prepared statements. This is my first time using them and I am having difficulty retrieving all the results. When I use a direct SQL statement, ...
1
vote
1answer
125 views
How to use both fetch() and fetchAll() in a PDO wrapper class?
How can I alter my PDO wrapper class, so that if I expect a single row result with my query it uses fetch() and if it expects multiple results it uses fetchAll().
Right now, if I have only one result ...
1
vote
1answer
640 views
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: General error' in
I have this function and it keeps giving out the error "Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: General error' in..." The error is directing me to the line "$row ...
0
votes
2answers
66 views
PDOStatement::fetch returns false
I'm having some troubles with the fetch-method. Here's the code:
$stmt = $db->prepare("INSERT INTO x (name) VALUES (:username)");
$stmt->bindParam(':username', $username);
...
0
votes
0answers
32 views
PDO fetch() error
Here's my code:
$qer="insert into users (user,first,last,bio,email,pass,date,bd) values ('$name','$first','$last','$bio','$email','$pass','$date','$bd')";
$query=$con->query("select * from ...
0
votes
3answers
223 views
How to fetch 2 times in MYSQL PDO without FETCHALL
I have this sample query:
$STH = $DBH->query("SELECT id FROM table");
I want to get the first row and then loop and display all rows. So I use the following to get the first row:
...
1
vote
1answer
114 views
How to fetch and display an array using PDO?
I understand there are MANY ways to do all of this, but trying to do it the best way.
I have created the db parameters, dns, dbh, sth, sql and generally quite happy with the result up to ... well ... ...
1
vote
1answer
124 views
Accessing Associative Indexes Produced by PDO FETCH_ASSOC
I fully admit must have a faulty understanding of the construction of an associative array.
The following login script will populate $userdata with an associative array consisting of $username's ...
0
votes
2answers
59 views
How to fetchAll all the columns from the database
I have a coding like this
$tampilUbahVerifikator = $app['db']->prepare("
select p.nama_pegawai, v.id_pegawai, v.id_verifikator, v.penanggung_jawab,
...
1
vote
3answers
248 views
Use fetched data twice in PHP and MySQL with PDO
I'm writing an accounting system with PHP and MySQL and using PDO for working with database. In the payment page, I must have 2 drop down lists from defined accounts.
At the first, I've used a simple ...
1
vote
1answer
120 views
fetch on PDO returns only one row and first character. why?
i'm new on PDO with PHP and i want your help. i made a function with a select statement and if the query has value greater than 0 it returns the fetch.
...
0
votes
0answers
140 views
Zend Framework Using fetch() statement in a loop, internal query doesn't work
I can't solve this one.
I have multiple while, and the one inside fetch only the first result and stop ...
Here is the code :
$categories is an array
array(18) {
[0] => array(7) {
...
0
votes
1answer
413 views
PDO get data from database
I started using PDO recently, earlier I was using just mysql..
Now I am trying to get all data from database.
$getUsers = $DBH->prepare("SELECT * FROM users ORDER BY id ASC");
...
1
vote
1answer
32 views
PDO get name of selected columns as object
How can I fetch selected data to an object and retrieve the selected columns name with PDO?
Now, I'm fetching to a Member object in a loop, and manually add each column to the object by accessing it ...
0
votes
2answers
62 views
Fetch specific returned row information in PDO
I have a table stores logins information such as date, time, etc. Whenever a user signs into my website, I store these information on the table. Also I would like to tell him when was his previous ...
0
votes
2answers
256 views
displaying mysql select statement using PHP PDO
questions from a Newbie :-)
I am trying to convert my MySQL query syntax into PDO but having some issues getting started.
I have an included file in my page called dbc.php. contains the code:
...
0
votes
1answer
99 views
PHP PDO Query for Event Listing
i'm working on a events project and i want to show my users' events which they've hosted in their profile pages, but i got stuck on with listing the events.
The other things are working well.
here ...
3
votes
3answers
155 views
Connecting to a DB using PDO returning a non object error
I tried following this tutorial on PDOs, followed it exactly, yet when trying to connect on a very basic level, it's outputing a non object error. I made a small test to determining the boolean of the ...
0
votes
1answer
513 views
PHP PDO mysql_result() equivalent?
What would i use in PDO instead of old mysql_resul()?
function ib_uk_isvalid($db,$uk) {
try {
$sth = $db->prepare("SELECT count(*) FROM ib_userkeys WHERE value=:val");
...
0
votes
3answers
2k views
PDO - Call to a member function fetch() on a non-object
My error:
( ! ) Fatal error: Call to a member function fetch() on a non-object in C:\wamp\www\PDO\index.php on line 13
My code:
<?php
$config['db'] = array(
'host' => ...
0
votes
2answers
506 views
How do I fetch mulitiple rows using fetch(PDO::FETCH_ASSOC) with pdo?
testQuery() is the method I use to get all rows from table CATEGORIES
public function __construct()
{
self::$tdb = Database::getConnection();
}
#mock query to pull results from db
public ...
1
vote
2answers
296 views
PDO/PHP : Fetch Array and Prepared Statements
As you can see I'm trying to fetch rows from table while using prepared statements.
$stmt = $conn->prepare("SELECT * FROM table ORDER BY date DESC LIMIT ?, 10");
$stmt->bindParam(1, $row_start, ...
4
votes
1answer
82 views
Mulitple Fetches in Loop using Counter and Array
I've been having an issue executing prepared queries using bindParam() with PDO in a loop. Basically what I'm trying to do is loop through an array, and with each array element, return the data from ...
1
vote
1answer
122 views
Why PDO does not show any result?
I've used PDO in my PHP application. But I have problem with fetch() function. Whenever I count the result of fetch(), it tells me there is something in resultset. But when I want to show them, it has ...
0
votes
0answers
41 views
PDO checkin' NumRows>0 by fetch() method
I saw on documentation that they suggest to check if a select stmt returns or not a set of
results the following snippet:
$sql = "SELECT COUNT(*) FROM fruit WHERE calories > 100";
if ($res = ...
0
votes
0answers
50 views
php PDO fetch data's type isn't expected [duplicate]
Possible Duplicate:
PDO + MySQL always returns strings, but what about MsSQL?
$stmt = DB::$dbh->prepare('SELECT id,title FROM map_level where id = ?');
$stmt -> ...
2
votes
2answers
188 views
How to properly handle errors from PDO fetch()?
The doc for error handling for fetch() seems unclear and I haven't found an answer anywhere after a lot of searching. A common usage model for fetch as shown in the doc is:
while ( $row = ...
0
votes
2answers
3k views
PDO Query Fatal error: Call to a member function setFetchMode() on a non-object
I have been trying to pull all infomation where $user is equal to subscriberID in my sql database. I am using the PDO method of inserting data and wish to use the query function also.
i am getting the ...
0
votes
1answer
366 views
non-object error with fetchColumn() in PDO
I'm getting a Call to a member function fetchColumn() on a non-object error when I'm executing my query with a mysql prepared statement on PHP
$result= $dbh->prepare("SELECT COUNT(*) FROM table ...
1
vote
1answer
806 views
PHP PDO fetch and foreach - I'm not getting the first column
This is my first post, so I'm just getting to know how the community works so I can be helpful too, later on...
I have an index.php and db.php for testing PDO in a very small and simple app, in the ...
0
votes
1answer
246 views
PDO fetch loop is returning an array of the same mysql table column names over and over instead of the data
I've been racking my brain on this one, searching all over the place and I cannot find an answer. I'm trying to pull the data from 2 columns of a 14x9 mysql db table and place it into an array. Sounds ...
0
votes
2answers
114 views
Difference between PDO::FETCH_* and the casting
I want to know the real difference in PHP PDO between the cast variable and the constant PDO::FETCH_* for the return query
Example:
$row = $stmt->fetch(PDO::FETCH_OBJ);
OR
$row = (object) ...
0
votes
1answer
137 views
Problem with PHP PDO fetchOject
It seems to be a bug or problem when I use PHP PDO fetchOject with the query below,
Query:
SELECT
p.*,
t.*
FROM root_pages AS p
LEFT JOIN root_templates AS t
ON p.tmp_id = t.tmp_id
WHERE ...
0
votes
2answers
189 views
Why are my JOINs failing?
I have a function to retrieve a single row of data representing a sales report for a store on a specific date. I'm using similar methodology to retrieve data throughout the same class and application ...
6
votes
5answers
12k views
php pdo: get the columns name of a table
How can I get all the column names from a table using PDO?
id name age
1 Alan 35
2 Alex 52
3 Amy 15
the info that I want to get ...
1
vote
1answer
673 views
PHPUnit - Mock PDO Statement fetch
Still in the process of testing a mapper class, I need to mock PDO.
But now I ran into an infinite loop problem:
$arrResult = array(
array('id'=>10, 'name'=>'abc'),
...
3
votes
3answers
3k views
Is there a way to fetch associative array grouped by the values of a specified column with PDO?
For example, let's use some simple data set
+---------+------+------+------------+
| name | age | sex | position |
+---------+------+------+------------+
| Antony | 34 | M | programmer |
...
0
votes
2answers
659 views
ZF: query error SQLSTATE[HY093]
I have error on this function:
public function getCountCategoryByUrl($url, $root = 0)
{
$url = strtolower($url);
$select = $this->select()
->from($this->_name, ...
0
votes
3answers
1k views
function fetch() on a non-object problem
I have this url,
http://webworks.net/ww.incs/forgotten-password-verification.php?verification_code=974bf747124c69f12ae3b36afcaccc68&email=myemail@gmail.com&redirect=/ww.admin/index.php
And ...
0
votes
2answers
239 views
pdo fetch within a fetch error
I am trying to run the following script (unsuccessfully):
$variables = $db->query("SELECT * FROM table1 WHERE Session_ID = '$sess1'");
while($row = $variables->fetch()) {
//FETCH DATA
$id= ...