Tagged Questions
4
votes
2answers
537 views
Why does doctrine use WHERE IN instead of LIMIT?
Why does doctrine (1.2) use WHERE IN instead of LIMIT?
This code:
Doctrine_Query::create()
->from('Table t')
->limit(10)
->getSqlQuery();
Returns something like this:
SELECT ...
3
votes
2answers
964 views
PHP Doctrine - Best practice to set application-wide default table charset
At the moment, I am setting my table charset and collation like this:
class Model extends Doctrine_Record
{
public function setTableDefinition()
{
//...
$this->option('collate', ...
3
votes
2answers
1k views
Make doctrine load auto_increment value after save
I'm using Doctrine for database abstraction. Now I'd like to get the auto_increment primary key from the freshly-created (and save()'d) object - but $obj->toArray() shows me that the field is empty ...
2
votes
2answers
147 views
Writing model methods in Doctrine
I'd like to encapsulate functionality specific to certain models by including methods in the model class definitions. So, for example:
abstract class BaseUser extends DoctrineRecord {
public ...
2
votes
1answer
407 views
PHP-Doctrine2: Items - Shops - ItemsAtShops - how to conveniently implement using Doctrine2?
Somehow I can't figure out how to implement the following relations
using Doctrine 2 syntax:
I have Items and Shops. Each item has different price and different
quantity at each shop. So, I have ...
1
vote
1answer
464 views
Problems integrating Zend Framework and Doctrine
I've done this before on another machine and the setup is almost identical. However, its just not working on the new machine. When I try and get Doctrine to generate my models, its putting them in the ...
1
vote
2answers
1k views
DQL delete from multiple tables (doctrine)
Need to perform DQL delete from multple related tables.
In SQL it is something like this:
DELETE r1,r2
FROM ComRealty_objects r1, com_realty_objects_phones r2
WHERE r1.id IN (10,20) AND ...
1
vote
1answer
336 views
What is the syntax for a multi-table delete on a MySQL database using Doctrine?
Using Doctrine, I am trying to delete records in a single table based on data gathered from multiple tables.
'companies_groups' is an association table linking 'companies' to 'groups'. I want to ...
1
vote
1answer
925 views
Doctrine many to many on same class
I'm trying to create a social-network like feature in an app I'm building, and Want to associate a Friend with another Friend.
Assume I have this:
Friend:
connection: doctrine
tableName: friend
...
1
vote
2answers
471 views
Doctrine - filter by foreign agregate value
how can i use result of Agregate function in where in Doctrine?
For example i want to know user with silly much numbers.
SELECT u.name, COUNT(p.id) AS users_phonenumber_count
FROM users u
...
1
vote
1answer
877 views
Doctrine_RawSql custom Select
I having problems to generate a doctrine_rawsql with a custom select.
This is my rawsql
$distance = glength(linestringfromwkb(linestring(asbinary(GeomFromText('POINT( FLOAT('30') ...
0
votes
0answers
61 views
Working with objects
i'm working on a tree, on object oriented programming through Doctrine2, where $this->page is a tree node and $this->page->getChilds() returns its childs.
But they have a `$private->order ...
0
votes
2answers
200 views
How do you save a record with a OneToMany relationship field with Doctrine 2?
how do you save a record (from a service) that has one of it's properties set as a OneToMany relationship with another entity?
I have the following service class for my users:
namespace ...
0
votes
2answers
875 views
Doctrine 2 : orm:generate-repositories not working
I recently integrated zend framework with doctrine 2. I am having some issues trying to generate repository classes. I have no problems generating proxies.
The weird part is when I ...
0
votes
0answers
346 views
How can I properly use IF statement in doctrine and SELECT AS?
$query = Doctrine_Query::create()
->select('IF(m.sender_id = ?, m.receiver_id, m.sender_id) AS uid', $my_id)
->from('Message m')
->where('m.receiver_id = ? OR m.sender_id = ?', ...
0
votes
0answers
54 views
Bundling Doctrine PHP commonly used models
Doctrine PHP documentation suggests bundling commonly used classes to single files.
Does this refer to Doctrine model files? If so , do you have any examples of how this would be done and how you ...
0
votes
1answer
158 views
Can I only generate base classes when calling Doctrine::generateModelsFromYaml()?
I am using Doctrine::generateModelsFromYaml(). It creates a directory filled with base classes. Cool. I'm guessing the point of separating the base classes is to store only column definitions and ...
0
votes
1answer
185 views
Accessing Many-to-Many Field in Doctrine
This must be simple, but I can't seem to find the answer online nor figure it out through trial and error.
I have a class Deck and a class Card which have a many to many relationship with each other. ...
0
votes
2answers
772 views
Doctrine Update by DQL + field with parenthesis: “(” and “)”
I have a doctrine update query to save my data:
$customer = Doctrine_Query::create()
->update('Customer')
->set('fax',"'". $this->getRequest()->getParam('fax')."'")
->where('id ...
0
votes
1answer
348 views
Mysql_insert_id with Doctrine
I have a couple of tables (mySQL) that i would like to update with the help of Doctrine. The products table id is auto-incrementing, and here's a brief description on what I would like to do:
...
0
votes
1answer
568 views
Doctrine issues when using JOIN and WHERE
I have a simple doctrine code:
$dql = Doctrine_Query::create()
->select('u.ident, u.username, u.email')
->from('Users u, u.Attributes ua');
if ($query) {
$dql->where('u.username ...
0
votes
1answer
745 views
Doctrine not Inserting Datetime in SQL Server
Doctrine ORM 1.0 inserts Datetime values in ISO8601 format; that is: '2009-10-23 12:31:22', but for some reason using SQL Server 2008 Express as my DB, throws an exception as if the value inserted was ...