2
votes
1answer
55 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 …
0
votes
2answers
35 views
How do I add a limit to update-query in Zend Framework?
Hey!
How do I add the LIMIT 1 clause to an update when using Zend Framework?
I'm kind of forced not to use Zend_Db_Table_Abstract::update() since it executes itself unlike the sw …
0
votes
2answers
39 views
Zend_Db_Table subquery
Hi,
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 …
0
votes
2answers
199 views
Using relations for setting in Zend_Db_Table_Row
Hi there
is there a way how to use Zend_Db relations for setting related objects?
I am looking for something like following code:
$contentModel = new Content();
$categoryModel …
0
votes
2answers
74 views
Saving row after populating from Array - Zend
Hi All
Once again a Zend Framework question! Any help is appreciated.
I have a DB table class which i want to use to insert/update rows when a form is posted, and i would like to …
1
vote
1answer
62 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:
in …
1
vote
1answer
132 views
Zend Framework relationships - defining column names in findManyToManyRowset()?
Hi,
I'm working on an application developed using Zend Framework. I have defined relationships in models, and can use them happily, e.g:
$rowset = $row->findManyToManyRowset( …
0
votes
1answer
32 views
No adapter for type Zend_Db_Table_Row error?
Hi,
I have a project in which I use more than one adapter.
So In ma models i created an abstract model
abstract My_Config1_Model extends Zend_Db_Table_Abstract
{
public fun …
0
votes
3answers
37 views
How to access a protected property of Zend_Db_Adapter
Hi all!
I've to change the value of protected $_autoQuoteIdentifiers but I don't know how.
class ZendX_Db_Adapter_Firebird extends Zend_Db_Adapter_Abstract
{
protected $_autoQ …
2
votes
1answer
129 views
Using Zend Framework Db Tables without MVC
Hi All
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 table …
2
votes
2answers
113 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 relati …
0
votes
3answers
240 views
To get the complete row with join tables in Zend_Db_Table
This is my table structure.
http://img6.imageshack.us/img6/8730/articlek.jpg
I want to get a article row object from id with section and category names instead of section_id and …
0
votes
1answer
25 views
Zend_Db _Table_Abstract and Left Joins
Is there a way to do a left join within a Zend_Db_Table_Abstract based model.
I would like to retrieve a record with a left join to another table so that I am able to query all th …
0
votes
1answer
91 views
Zend_Db_Table_Abstract and Default Scope
Is there a way to add a default scope to a Zend_Db_Table_Abstract based model.
I want to be able to query a model with some conditions taken as default.
e.g.
deleted = false
o …
1
vote
3answers
83 views
Can I set the Database adapter to use permanently from within a Zend_Db_Table_Abstract Class?
I have 2 databases that my site uses including a central user database that relates to other site-specific databases.
Sometimes it is adequate to call new User(array('db'=>'ad …
