Tagged Questions

Database access component for the Zend Framework.

learn more… | top users | synonyms

13
votes
2answers
4k views

How to create WHERE IN clause with Zend_Db_Select

So I am trying to accomplish something like this: SELECT * FROM table WHERE status_id IN (1,3,4); using Zend_Db_Select... can't find how to do it :( Is it at all possible?
10
votes
9answers
22k views

Registering Zend Database Adapter in Registry

I am looking to register a reference to the main Database Adapter in the Registry during Bootstrapping so it can be used elsewhere in my site (specifically the Authorisation action). I have ...
8
votes
1answer
78 views

How to connect to DB, when running via command line

When I run zend framework project from browser, everything is OK, it connects to DB. When I run project from command line it can't connect to DB and it throws an error: Fatal error: Uncaught ...
8
votes
1answer
793 views

Why should I use Doctrine over Zend_Db?

I use Zend_Db in some project, I discover Doctrine there is a while but never actually used it. What are the advantage of Doctrine over Zend_Db ? What are the benefits to use Doctrine ? By the way, ...
8
votes
3answers
14k views

Zend DB Framework examine query for an update

So you can use something like this: $query = $db->select(); $query->from('pages', array('url')); echo $query->__toString(); to examine the sql that the Zend Db Framework is going to use ...
7
votes
2answers
8k views

Zend Framework: How to delete a table row where multiple things are true?

Normally, this would work for me: $db = Zend_Db_Table::getDefaultAdapter(); $where = $db->quoteInto('id = ?', $id); $db->delete('tablename', $where); but I have to match two ids. So I don't ...
7
votes
1answer
2k views

Using Zend Framework Db Tables without MVC

I am trying to use the Zend Framework without using the MVC structure, specifically the Db_Table classes. I have created a couple of classes representing my database tables i.e class ...
6
votes
3answers
318 views

Zend DB Select : ORDER BY FIELD('id',some_array) - how?

How would you write the following query in Zend framework? SELECT * FROM table_name ORDER BY FIELD(field_name, 'Small','Medium','Large'); I just need the "Order by" part :) Thanks!
6
votes
3answers
6k views

How do I add more than one row with Zend_Db?

I have an array with information which looks more or less like this: $data[] = array('content'=>'asd'); $data[] = array('content'=>'asdf'); And I want to add both entries into the Database. ...
5
votes
2answers
176 views

Using concrete Zend_Db_Table_Abstract to efficiently iterate through a rowset

I'm using a concrete implementation of Zend_Db_Table_Abstract: class DB_TestClass extends Zend_Db_Table_Abstract { protected $_name = "test.TestData"; } If I want select all rows in the table, ...
5
votes
4answers
8k views

how to get last inserted Id of a Sqlite database using Zend_Db

I'm trying to fetch the last inserted row Id of a Sqlite DB in my PHP application. I'm using Zend Framework's PDO Sqlite adapter for database handling. the lastInsertId() method is supposed to give me ...
4
votes
4answers
388 views

Learning Zend Framework after Magento: Models

I have been working over an year with Magento and have learned it good enough. Now I want to learn Zend, and I'm stuck with models. I'm used to have entities and collection of entities in Magento, ...
4
votes
1answer
358 views

Doctrine 2 and Zend 1.11 convert-mapping error..

I have a complex database design with views, relationship etc. We decided to switch to ORM from the standard Zend_db. I successfully integrated zend 1.11 and doctrine 2.1. All the tutorials out there ...
4
votes
2answers
364 views

How do left outer joins work on Zend framework

I have this SQL query: SELECT pais FROM pais LEFT OUTER JOIN users_has_pais ON pais.id = users_has_pais.pais_id WHERE users_has_pais.users_id = 100 And I'm trying to write something similar within ...
4
votes
1answer
183 views

Mixing Zend_Db with ORM Classes

Zend has Zend_Db but it's not a full ORM. I already have sections of an app written in a way that uses Zend_Db. I do however want to integrate a full ORM into the application to use it for more ...
4
votes
5answers
708 views

Zend PDO error - how can I debug it?

I have a weird problem using Zend Framework and Mysql. I generated a query: SELECT events.idUser, szForename, szLastname, readers.szName, idZoneFrom, events.dtTime FROM events, users, readers WHERE ...
4
votes
1answer
979 views

Zend_Db subquery

I've been trying to construct a sql query with ZendFW, but I cant seem to get it to function like I want to (or function at all). This is the query that works that I'm trying to build with zend_db ...
4
votes
3answers
2k views

How do I add complex where clause to Zend Table Select?

I searched the Web and could not find anything that would show me a good solid example. My question is basically this: How do I convert this: SELECT * FROM table WHERE ((a = 1 AND b = 2) OR (c = 3 ...
4
votes
1answer
898 views

Zend Db avoiding sql injections

I have the following code: public function checkLoginDetails($email, $password) { $select = $this->select (); $select->where ( "password=?", md5($password) ); $select->where ( "email=?", ...
4
votes
3answers
5k views

Zend Framework: How to retrieve the id of the last inserted row?

I'm inserting a new row into my database with this code: $data = array( 'key' => 'value' ); $this->getDbTable()->insert($data); How can I get the row id of the this row that I just ...
4
votes
2answers
391 views

Zend: Two Objects, one Row

I've recently started using Zend Framework (1.8.4), to provide admin tools for viewing the orders of a shopping cart site. What I'd like to do is to efficiently create multiple model ...
3
votes
1answer
27 views

Zend_Db_Statement_Pdo->execute with expression in params

I try to execute insert statement with "on duplicate" part. As I know Zend doesn`t support this, so I use simple statement: $sql = "INSERT INTO agent(`inn`, `name`, `created`) VALUES(:inn, :name, ...
3
votes
1answer
55 views

Zend_Db_Table joined queries vs database view

I was wondering what would be the best practices and the best way to achieve consistency while accessing your database data : Current structure goes as follow Data Access --> Business Logic ...
3
votes
2answers
24 views

Local “Cache” for Zend_Db_Row subclasses

Across our application, we use subclasses of Zend_Db_Row to represent objects in our application. these objects are being returned by various fetch functions. <?php require_once 'Zend/Db.php'; ...
3
votes
4answers
347 views

How to print exact sql query in zend framework ?

I have the following piece of code which i taken from model, ... $select = $this->_db->select() ->from($this->_name) ...
3
votes
1answer
187 views

Zend Framework generate unique string

I want to generate a unique 4-6 char long AlphaNumeric string to save in db with each record(user). The db field has a unique index, so trying to save a pre-existing string generates an error. Right ...
3
votes
1answer
87 views

Modelling in Zend framework

I'm working on a large project at the moment and am just wondering which is best practice, to model entities and sets of entities seperately or in one class? Currently I am implementing two classes ...
3
votes
1answer
117 views

Recommended Practice with Zend Framework's DB components?

Here's a bit of context first: I am writing a project in PHP using Zend Framework and I have some E/R diagrams from past meetings with the client. The database schema was written for MySQL and now it ...
3
votes
3answers
2k views

last insert id with zend db table abstract

variable $tablemodel in an instance of a model which extends Zend_Db_Table_Abstract, if i do $tablemodel->insert($data) to insert data. Is there any method or property to get last insert id? ...
3
votes
2answers
393 views

How to paginate two tables in zend framework

Books has the following fields book_id book_name book_auther book_pub_date category table has category_id category_name placement table has placement_id placement_category_id(FK) ...
3
votes
2answers
1k views

Best way to set charset for Zend_Db (or at least better then what I'm currently doing)

I'm using Zend_DB and trying to change the charset to utf8, here is the code: config.ini : [development] db.host = "localhost" db.username = "root" db.password = "toor" db.dbname = "db_whoopdiedo" ...
3
votes
3answers
665 views

Building a select distinct on mysql ( zend_db)

I HAVE THE FOLLOWING TABLE, I WOULD LIKE TO GET to do a select distinct on the the column [code], i don't need to get the "A" three times. [ ID ] [ CODE ] [ LIBELLE ] 1 A ...
3
votes
1answer
795 views

Zend-framework DB: OR instead of AND operator

have such zend query: $select = $this->_table ->select() ->where('title LIKE ?', '%'.$searchWord.'%') ->where('description LIKE ?', ...
3
votes
3answers
2k views

zend newbie question - “No adapter found for ”

Working through a zend tutorial & get this message, & not sure where to look. thanks, An error occurred Application error Exception information: Message: No adapter found for ...
3
votes
3answers
597 views

Zend_Db and Date Based Queries

I'm using Zend_Db to query a table. I have some WHERE clauses that need to be dates and it's not clear (at first glance) how to do this "the right way". Does Zend_Db provide an abstraction so I don't ...
3
votes
4answers
3k views

SQL: Insert only new rows/records into a table?

I'm parsing a json feed routinely and need to insert only the newest users from the feed and ignore existing users. I think what I need is ON DUPLICATE KEY UPDATE or INSERT IGNORE based on some ...
3
votes
3answers
2k views

connecting to two different databases with Zend Framework

I have here a medium sized intranet site which is written entirely in Zend FW. The database for the intranet is located on another server. Now I need to extend the intranet with some new ...
3
votes
2answers
2k views

Zend_Db_Select order by random, compatible in mssql / mysql

Alright here's the situation, I have an application written in the Zend_Framework, that is compatible with both MySQL and MSSQL as the backend. Now, ZF is pretty good at solving a lot of the SQL ...
3
votes
2answers
658 views

zend relationships with select

I am new to zend. I have been asked to redevelop a website that was once written in plain PHP and put it into the zend framework. I am having a lot of trouble with database relationships, I cant seem ...
3
votes
2answers
557 views

Zend_Db last_insert_id returns super big number

I have a MySql table whose primary key is a 64bit BigInt I'm using Zend_Db (Zend Framework 1.8.4) to insert a new row, then call lastInsertId() to retreive the new row's id, what I get back is a ...
3
votes
4answers
8k views

Zend Framework Db Select Join table help

I have this query: SELECT g.title, g.asin, g.platform_id, r.rank FROM games g INNER JOIN ranks r ON ( g.id = r.game_id ) ORDER BY r.rank DESC LIMIT 5` Now, this is my JOIN ...
3
votes
2answers
496 views

Zend selects all columns

In the following code: $selectColumns= array('user_id.user_email', // inner join the data from user_id and user_details 'user_details.first_name', ...
3
votes
5answers
2k views

Is there a way to get the number of records from a query with Zend-framework?

Given my generic select below, is there a way to get the number of records returned from a query with Zend Framework? $row++ in a loop is not acceptable for my solution as I am using paging (though ...
2
votes
2answers
34 views

Retrive a last inserted user_id in zend db

How to retrive last inserted user id. I have to use that user id for inserting that user id into next query that also should done in this transaction only. my qry: $db->beginTransaction (); $sql = ...
2
votes
1answer
83 views

mysql_real_escape_string with Zend

I am developing a web application using zend framework. For select statements I have used following way. Ex: public function getData($name) { $sql = "SELECT * from customer where Customer_Name = ...
2
votes
2answers
99 views

Adding a WHERE clause to Zend_Validate_Db_NoRecordExists

I am using Zend_Validate_Db_NoRecordExists detailed in the link below to check if a record exists before inserting it. I have no issues with the basic code and have got it working fine, what I need ...
2
votes
1answer
90 views

How to implement sql between operator in zend_db

I have the following queries which calculates the total order sale happened in last 5 months, > SELECT SUM(o.total), DATE(o.order_date) dateonly FROM `order` as o where (o.order_date BETWEEN ...
2
votes
2answers
154 views

Zend_Validate_Db_RecordExists with Doctrine 2?

I'm using Doctrine 2 in a Zend Framework application and require functionality similar to Zend_Validate_Db_RecordExists and Zend_Validate_Db_NoRecordExists. For example, when a user enters a new ...
2
votes
1answer
48 views

How do I use a “HAVING” clause in a Zend_Db_Select statement without parenthesis?

I know Zend provides a having() method, but what I want is a query like: SELECT a.*, `as`.* FROM `fruit_db`.`apples` AS `a` INNER JOIN `fruit_db`.`apple_seeds` AS `as` ON a.id = as.apple_id WHERE ...
2
votes
1answer
39 views

Zend Framework and mysql slaves support

I'm looking for a generic way on managing database connections in Zend Framework (1.1). Our ZF application is hosted in the amazon cloud and we use their RDS solution. Adding the read replica ...

1 2 3 4 5 10