Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
520 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 ...
4
votes
8answers
3k views

One-to-many relationship in the same table

Im trying to use to define a one-to-many relationship in a single table. For example lets say I have a Groups table with these entries: Group: Group_1: name: Atlantic Records Group_2: ...
3
votes
2answers
57 views

Transparently executing SQL functions when loading/saving a field in Doctrine 2

I'm working with Doctrine2, and have a entity containing a string property that represents a WKT geometry: class Entity { /** @Column(type="string") */ protected $wkt; } I'd like to have ...
3
votes
2answers
933 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
1answer
388 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
448 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
0answers
497 views

Doctrine 2 Classloader weird behaviour - wrong paths to classes

I'm having a bit of a problem with Classloader added to Doctrine 2 project. I have simple directory structure like this: config (bootstrap file) html (docroot with templates/images/js etc) php ...
1
vote
2answers
140 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 ...
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
331 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
906 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
456 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
872 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') ...
1
vote
7answers
2k views

Problem with var_dump PHPDoctrine Objects

I have a very strange problem, when I try to var_dump (or print_r) a PHPDoctrine Object, my Apache responses with an empty blank page (200 OK header). I can var_dump a normal php var like: $dummy = ...
0
votes
0answers
57 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
1answer
310 views

Manage ACL with Zend Framework and Doctrine 2

Does anyone know how to deal with ACL and Doctrine 2 inside a Zend Framework 1.11.10 Project ? Thanks. Regards.
0
votes
2answers
168 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
0answers
54 views

PHP Doctrine 1.2 and EntityManager

I work on a big scale web project that utilizes Doctrine 1.2 and integrated into CodeIgniter's framework. At this point in time we can't actually upgrade Doctrine to 2.0 due to proudction release ...
0
votes
0answers
196 views

count of affected documents in Doctrine MongoDB ODM while updating

I am using the Doctrine Mongodb ODM, and I am executing an update query with the Query Builder. I want to know how many documents were affected by my update. This is possible while using the php mongo ...
0
votes
2answers
800 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
311 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
52 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
156 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
180 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
744 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
331 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
559 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
729 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 ...