Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
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
3
votes
1answer
2k 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 = ...
2
votes
1answer
169 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: ...
2
votes
3answers
2k 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
592 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 ...
1
vote
1answer
37 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: ...
1
vote
1answer
157 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 ...
0
votes
1answer
29 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] ...
0
votes
3answers
54 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
52 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 = ...
0
votes
1answer
531 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 ...
0
votes
2answers
575 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 ...