Tagged Questions

4
votes
2answers
521 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
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
938 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
391 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
0answers
499 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
142 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
457 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
1answer
313 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
0answers
55 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
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
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
746 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
333 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 ...