Tagged Questions
The zend-db-table tag has no wiki summary.
12
votes
2answers
2k views
When should use doctrine ORM and when zend-db-table?
In terms of project scale, doctrine vs zend-db-table speed and performance, when should I use doctrine inside Zend project, and when zend-db-table?
10
votes
2answers
2k views
Zend framework - Why should I use data mapper / Db_Table_Row?
Extended Question: Why should I use data mapper / Db_Table_Row, where as DbTable is capable of handling most of the basic tasks for data manipulation.
I am currently learning ZF v1.11
For Database ...
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 ...
7
votes
1answer
2k views
Grouping WHERE clauses with Zend_Db_Table_Abstract
Does anyone know of a way to group where clauses with Zend_Db? Basically I have this query
$sql = $table->select()
->where('company_id = ?', $company_id)
->where('client_email = ?', ...
7
votes
7answers
2k views
avoiding MySQL injections with the Zend_Db class
I currently use Zend_Db to manage my queries.
I've written already code that preforms queries like the one below:
$handle->select()->from('user_id')
->where('first_name=?', $id)
...
7
votes
7answers
10k views
How to make PDO run SET NAMES utf8 each time I connect, In ZendFramework
How to make PDO adapter run SET NAMES utf8 each time I connect, In ZendFramework.
I am using an INI file to save the adapter config data. what entries should I add there?
If it wasn't clear, I am ...
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.
...
6
votes
7answers
6k views
How can I escape complex sql in Zend Framework?
I have the following sql (a simplification of the real problem):
SELECT *
FROM t
WHERE myname LIKE '%{$input}%';
How do I escape the $input?
I can't use the quoteInto (unless I miss something).
As
...
6
votes
3answers
5k views
Zend Framework: Proper way to interact with database?
I'm fairly new to the Zend Framework and MVC and I'm a bit confused by Zend_DB and the proper way to interact with the database.
I'm using the PDO MySQL adapter and have created some classes to ...
4
votes
1answer
90 views
VARCHAR(4) storing more characters than four
I have a VARCHAR(4) column that receives data from an input that may be above 4 characters. This is okay, though, and I let MySQL naturally (or so I thought) cut off the end of the characters.
...
4
votes
2answers
363 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
4answers
2k views
Cannot refresh row as parent is missing. Zend Framework
i am getting the error "Cannot refresh row as parent is missing" when I try to save. Here is my code
abstract class Webapp_Model_Resource_Db_Table_Abstract
extends Zend_Db_Table_Abstract
{
/**
...
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
7answers
4k views
Zend_Db: How to get the number of rows from a table?
I want to find out how many rows are in a table. The database that I am using is a MySQL database. I already have a Db_Table class that I am using for calls like fetchAll(). But I don't need any ...
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 ...
4
votes
2answers
2k views
Translating a query to use Zend_Db_Select
I'm having some problems translating this query to use ZF's Zend_Db_Select:
SELECT b.id, b.title, b.description
FROM memberships AS m
JOIN blogs AS b ON b.id = m.blog_id
WHERE m.user_id = ?
ORDER ...
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
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
2answers
92 views
Any elegent solution how to make insertion to many to many table?
I got these tables:
Tag - contains the tag names and id (Tag_ID, tag)
TagReview - linking table between tags and reviews (Review_ID, Tag_ID)
Review - holds reviews. (Review_ID, content, ...)
...
3
votes
2answers
422 views
Zend_Db_Table_Row error create new row
i have a table
--
-- Table structure for table `pages`
--
CREATE TABLE IF NOT EXISTS `pages` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL,
`title` varchar(200) ...
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
1answer
792 views
Zend Framework - Database Table Singleton
I have found myself doing this in my code to 'cache' the work done when instantiating my Zend_Db_Table models:
if (Zend_Registry::isRegistered('x_table')) {
$x_table = ...
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
517 views
array to Zend_Db_Table_Row zend framework
is there a way of automatic converting from array to Zend_Db_Table_Row or Zend_Db_Table_Rowset?
Form Zend_Db_Table_Row you can get the array with toArray(), but I was wondering if there exits ...
2
votes
1answer
74 views
Zend_Db_Table_Row: Why do I have to use createRow()?
I'm wondering why in Zend_Db you have to use the createRow method to get a new, empty Row object, rather than just instantiating the Row object directly.
For instance, if I've extended the default ...
2
votes
2answers
119 views
Multiple Tables in Zend based on the Quick Start Guide Example
I am new to Zend and have been attempting to follow the Zend Quick Start Guide's example of using Data Mappers and extending Zend_Db_Table_Abstract. I think I've grasped the general concepts, but I am ...
2
votes
1answer
122 views
Multiple level dependency models in Zend Framework
I'm developing an application in Zend Framework to handle the rentals for a commercial property rental company. The company has multiple buildings which each have multiple floors, which each have ...
2
votes
1answer
99 views
stuck with zend_db_table + join
trying to understand of using Zend_Db_Table.
i have a such table:
then i created classes:
class table_1 extends Zend_Db_Table_Abstract
{
protected $_name = 'table_1';
protected $_primary = ...
2
votes
1answer
86 views
Zend Framework Update Checkboxes in Database
I have just started with Zend Framework, so might be a bit of a silly question coming up.
I have a Form with 5 Checkboxes. A User can click on as many checkboxes as needed. This gets entered into the ...
2
votes
3answers
215 views
How to model multilingual database with Zend, l18n mysql?
I know this topic was discusses a couple of times, but none of them represents the ultimate solution for me.
Situation
I'm designing a relational mysql database which later should hold multilingual ...
2
votes
1answer
313 views
Zend Db Table Abstract add new field to the row
I once posted this question, but had no answer at all, this time, the question is best formated so It will be more easy to understand what I need.
I created a Model with Zend_Db_Table_Abstract
Add ...
2
votes
1answer
81 views
Zend DB Table: All Values are Strings
I am using Zend DB Table and DB Table Row. When I get a row object for any of my tables, I see that the types have all been changed to strings, even the auto-incrementing primary key.
Is that ...
2
votes
1answer
302 views
How to link Model with the specific database adapter in Zend Framework's multidb
The application was initially using single database, but now I am changing it so different groups of data sits in different database. I added the other database using multidb. Now some model's are ...
2
votes
4answers
335 views
Why am I getting this Strict Standards message?
I have created a Zend Framework model by extending Zend_Db_Table_Absract as follows (simplified example):
class Foos extends Zend_Db_Table_Abstract
{
protected $_schema = 'Foo';
protected ...
2
votes
3answers
50 views
Very simple Zend_Db_Table question
I know this sounds rediculously easy but there is simply no documentation about this subject findable on google.
I'd like to to select two columns from the database. I made a Zend_Db_Table object and ...
2
votes
2answers
81 views
Why isn't this randomising the order?
I'm using Zend framework and trying to get the results to be in a random order. This returns the results but doesn't seem to vary the order. Any ideas?
class Model_DBTable_Tblquotes extends ...
2
votes
1answer
72 views
row specific class
How do I create a Zend_Db_Table which returns a different class for each row.?
Example
UserTable has id,name and type
Type contains class names (admin,client,etc...)
The classes admin, client are ...
2
votes
1answer
126 views
How to test if table was updated in Zend Framework?
When user opens a form to modify a record, but instead of changing information, he just clicks the Update button. Which causes the update() function to return 0. However, I consider this case a valid ...
2
votes
1answer
426 views
One-to-many relationship in the same table in zend
I have groupTable(group_id,group_name,group_date,group_parent_id)
in face each group have many group child.
I create groupModel and I want to begin coding is this right code to handle?
protected ...
2
votes
3answers
1k views
Zend Framework :: ORM - doctrine / propel over Zend_Db_Table
do anyone suggest using an external ORM like Doctrine/Propel over the defualt Zend_Db_Table in Zend Framework ?
I think your answers with reasons would be valuable across the ZF community.
-DevD
2
votes
1answer
265 views
Zend_Db_Table - Update don't work
The code seems not working.
// $counter is an instance of Zend_Db_Table_Abstract
$counter->update(array('hits' => 'hits+1'), '"id" = 1');
I took a look into the DB profiler and find the ...
2
votes
2answers
900 views
How to change Zend_Db_Table name within a Model to insert in multiple tables
Using Zend Framework, I've created a Model to insert a record into a database. My question is, after $this->insert($data) how can I switch the active table so that I can insert a record into ...
2
votes
2answers
1k views
“IS NULL” in Zend_Db_Table select not working
I'm trying to do a join on 2 tables in Zend, using the DbTable / model / mapper structure.
If, in my mapper, I do this:
$select = ...
2
votes
2answers
814 views
Extending Zend_Db_Table_Row_Abstract
I want to extend Zend_Db_Table_Row_Abstract to have some additional fields besides those from table.
Example.
I have
class Automobili_Model_Car extends Zend_Db_Table_Abstract {
...
2
votes
2answers
1k views
Best way to do an Inner Join using the Zend Framework?
It seems like there's a few different ways to join two tables using the Zend Framework, but I've never done it before so I don't know which is the best way to do it.
This is what I'm trying to do...
...
2
votes
3answers
3k views
Zend_Db_Table subquery
I have a some SQL that I want to use with ZendFW, but I can't get it working and it's driving me crazy. I get the correct result with this query:
SELECT DISTINCT e.festival_id FROM entries AS e, ...
2
votes
1answer
2k views
How to use bind variables with Zend_Db_Table->update() in the where clause
If I want to use the Zend_Db_Table->update() method to update my table with data, I cannot find anyway to use bind variables in the "where" clause.
The method signature is:
int update($data, ...