The tag has no wiki summary.

learn more… | top users | synonyms

-3
votes
0answers
56 views

pdo fecthAll() returns empty result set [closed]

what about this - print_r($this->_conn); echo $queryStr; $this->_conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $this->_conn->closeCursor(); $res = ...
0
votes
1answer
25 views

PDO foreach printing out a single entry from wrong column [closed]

Sorry for the awkward title, I have a query that is supposed to return all the comments that have the value 1 in the blog column. The table is made up of three columns: CommentID Comments Blog At ...
0
votes
2answers
32 views

Php Prepared Statements Turn Emulation Off

Are there any side effects to turning off emulation when using prepared statements with pdo? I'm using a select * and limiting the results which needs to be handled as an int and not a string. I can ...
1
vote
1answer
119 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 ...
0
votes
0answers
105 views

“fetchAll” command doesn't work ( Zend Framework ) with long sql query statment

I'm trying to send throught "fetchAll" command of zend framework (PHP) a query to mysql DB. the query is composed by a large amount of characters (about 9000 characters). My query is like: select * ...
1
vote
1answer
586 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 ...
1
vote
2answers
102 views

Downloading arrays off cur.fetchall() in Python and Oracle 11g

I'm trying to download a single array off of Oracle 11g into Python using the cur.fetchall command. I'm using the following syntax: con = cx_Oracle.connect('xxx') print con.version cur = ...
1
vote
2answers
159 views

PHP pagination fetchAll() and LIMIT

This code work well on first page, but seems that LIMIT don't affect FetchAll(). So my question is: Do fetchAll() have some optional argument that limit number of rows? Or suggest my a better way to ...
1
vote
0answers
176 views

PHP, Using PDO with nested queries, results corrupted

I'm using PDO against MSSQL, and need to run nested queries. They are all prepared statements. If I try to use the fetch() method, it inner queries fail immediately, so I used fetchAll(). So, I get ...
0
votes
1answer
112 views

How do I use fetchAll in php?

I am using this statement to fetch the elements in a column in my db $result = $stmt->fetchAll(PDO::FETCH_COLUMN, 0); but I get this error when trying to run it. Call to undefined method ...
3
votes
3answers
244 views

Out of memory error in php

I am on php 5.2.5 and executing a script from command line. In this script I am manipulating the data fetched from db. To fetch data from db I am using Zend Adapter. I notice an increase in ...
0
votes
1answer
104 views

Optimizing Oracle database query/fetchall

The database design is far from optimum but I have to deal with it and now I'm really stuck. Edit: I'm using cx_Oracle OK so this is my query: query="select degree, spectraldev.event.eventnumber \ ...
0
votes
2answers
130 views

replace fetchAll by fetch to avoid memory limit

I run into a memory limit error using fetchAll so I'm trying to use fetch instead but I can't find a way to do it. Any suggestion? Where/How to use the while instead of foreach ? here is the original ...
0
votes
3answers
2k views

Fatal error: Call to undefined method mysqli_result::fetch_all()

I have problems with PHP in Ubuntu 10.04. When I try use mysqli_result::fetch_all this error appears: Call to undefined method mysqli_result::fetch_all() However, it works in Windows XP. The Code: ...
0
votes
1answer
279 views

PHP-OOP: How to use results from a PDO fetchAll outside of the class

I'm newish to PHP and OOP and I have been using the PDO class to connect and retrive info from my MYSQL database. Below is and excerpt of the files in question: lyrics.class.php <?php class ...
0
votes
2answers
141 views

How to know active result set is completely fetched or not?

i use bde aliase and system datasources in odbce to connect ms sql server 2008 from delphi 7, some times 'connection is busy with another hstmt' error will occur, is there any way to find which ...
1
vote
1answer
167 views

Where to add 3 functions & how to write findByUsername - Zend Framework

I have a User.php model, DbTable/User.php model and UserMapper.php file as described in the Zend Documentation. The mapper has a fetchAll(), find($id), getDbTable(), save() and setDbTable() If I ...
0
votes
3answers
121 views

php FETCH_CLASS and autocomplete in Eclipse

I am new to PHP and PDO. I'm working with Eclipse PDT. $stmt = $pdo->prepare("SELECT * from articolo"); $stmt->execute(); $result = $stmt->fetchAll(PDO::FETCH_CLASS, "Articolo"); After ...
2
votes
2answers
74 views

How to do this lookup more elegantly in Python and MySQL?

I have a bunch of files in a directory named with nameid_cityid.txt, nameid and cityid being the ids of name (integer(10)) and city (integer(10)) in mydata table. While the following solution works, ...
29
votes
3answers
2k views

Why is the same SQLite query being 30 times slower when fetching only twice as many results?

I have been working on speeding up a query I'm using for about a week now and asked several questions about it here ( How can I speed up fetching the results after running an sqlite query?, Is it ...
1
vote
1answer
372 views

Python sqlite fetchmany and fetchall return ordered results

I've noticed that the Python sqlite fetchall() and fetchmany() statements return results in sorted key order rather than the original key order. For example, consider: list_indexes = [9, 5, 2, 8, 3, ...
0
votes
2answers
403 views

Zend Framework - fetchAll returns fatal error when it has no rows returned?

I know that when I try top use fetchAll and it returns a fatal error, the reason is because it has returned no records on the query. But my question is, how to treat it? How can I know if the query ...
0
votes
1answer
273 views

How can I speed up fetching the results after running an sqlite query?

As an answer on my question: Is it normal that sqlite.fetchall() is so slow? it seems that fetch-all and fetch-one can be incredibly slow for sqlite. As I mentioned there, I have the following ...
0
votes
1answer
376 views

Is it normal that sqlite.fetchall() is so slow?

I have an sql query that selects from two inner joined tables. The execution of the select statement takes about 50 seconds. However, the fetchall() takes 788 seconds and it only fetches 981 results. ...
0
votes
2answers
1k views

Zend_Db fetchAll() to return values as keys, not as key => value

Is there a way to change the default functionality in Zend_Db fetchall() method, so that it doesn't return this: [0] => 100000055944231 [1] => 100000089064543 [2] => 100000145893011 [3] ...
1
vote
1answer
416 views

PHP: Displaying table data using fetchall()

Quick PHP/MySQL question: I'm trying to display the data from a MySQL database table as an HTML table, and for some reason my code doubling the output of each piece of data. This is my code: ...
0
votes
3answers
256 views

MySQL PHP - How to remove unnecessary php echo text when mysql field is null?

I've got a client who wants me to format a list of businesses on a website page using data from a mysql database and putting it on the web page using php. The client wants each piece of data to be ...
0
votes
2answers
174 views

fetchAll getting stuck

I have the following code: $sql = "SELECT table.field, table2.field2 FROM table, table2"; $stmt = $this->db->prepare($sql); $stmt->execute(); $x = ...
5
votes
1answer
2k views

About mysql cursor and iterator

Imagine I have a mysql cursor and data read. The amount of data might be very big that I want to deal with one line each time. An easy and straight forward way might be like this: while True: ...
1
vote
1answer
281 views

Apache crashing while using Zend Framework

I have recently been studying the Zend Framework, but I have ran into a problem. Apache crashes when I run : $this->db->fetchAll("SELECT COUNT(DISTINCT userid) AS NumberOfUsers, COUNT(id) AS ...
3
votes
4answers
6k views

[zend][db] fetchAll with multiple variables

I'm trying to use fetchAll on a query that has 2 variables. I can't figure out the syntax. I can manage with only 1 variable: $sql = "SELECT * FROM mytable WHERE field1 = ?"; ...
2
votes
2answers
780 views

Zendframework / PgSQL fetchAll orderby

i have a pgsql table with fields id, identifier, name. id serial NOT NULL, identifier character varying(16), name character varying(128) I want to fetchAll values from the table orderby ...
0
votes
1answer
1k views

Zend Framework. The best solution to calculate rows in the table

I'm newbie in ZF and have some stupid question: What's the best solution to calculate rows in the table if I work with inherited object of Zend_Db_Table_Abstract class? For my first web application ...
3
votes
1answer
5k views

PDO looping throug and printing fetchAll

I'm having trouble getting my data from fetchAll to print selectively. In normal mysql I do it this way: $rs = mysql_query($sql); while ($row = mysql_fetch_array($rs)){ $id = $row['id']; $n = ...
0
votes
2answers
693 views

Increment values using Zend_DB_Table Raw SQL

I have a website where a user can upload images for a real estate property. The table structure: image_id property_id userid filename thumbfilename display_order timestamp The scenario: When a ...
5
votes
2answers
3k views

Zend Framework fetchAll

Can i override fetchall method in a model? I need to check sth everytime fetchAll is called. The model extends Zend_db_table_abstract