Tagged Questions

Doctrine 1.2 Doctrine 1.2 is a PHP (5.0+) ORM. While Doctrine 2.0 uses the Data Mapper pattern, Doctrine 2.0 uses the Active Record pattern. The Doctrine project is a collection open source libraries and tools for dealing with database abstraction and Object-Relational Mapping written in PHP. ...

learn more… | top users | synonyms

7
votes
2answers
146 views

Doctrine 1.2 hydration fails with HYDRATION_RECORD, but works with HYDRATION_ARRAY

I have a code that runs perfectly with Doctrine_Core::HYDRATION_ARRAY, but crashes with Doctrine_Core::HYDRATION_RECORD. The page is loading for about two minutes and shows standard browser error ...
6
votes
2answers
1k views

Preventing Doctrine's query cache in Symfony

In my Symfony/Doctrine app, I have a query that orders by RANDOM(). I call this same method several times, but it looks like the query's result is being cached. Here's my relevant code: $query = ...
4
votes
2answers
131 views

How to delete all data without breaking referential integrity using Doctrine?

I've put together a unit testing plugin for Symfony 1.4 that attempts to manage the database automatically, similarly to the way Django's test framework does it (destroy and rebuild the database ...
4
votes
1answer
377 views

Driver not found when calling “doctrine create-db”

I didn't know why but, I'm not able to perform this command with doctrine create-db . As you can see, my pdo and pdo_mysql is activated. php -i | grep 'ini' Configuration File (php.ini) Path => ...
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 ...
4
votes
4answers
2k views

What are the options available for Doctrine's Doctrine_Core::generateModelsFromDb method?

Doctrine 1.2 has a method called generateModelFromDb, documented here, that generates model files for all of the tables in a database. This function accepts an optional third parameter with an array ...
4
votes
4answers
2k views

how to convert Doctrine object into json

I am using Doctrine 1.2, how could I get the query object into json / array format? $user = Doctrine_Query::create() ->select('u.id, u.username, u.firstname, u.lastname') ->from('User u') ...
3
votes
1answer
34 views

How to not load the same reference twice in doctrine

Let say that we have two tables: Post and Category and two posts that have the same category_id, let say 1. $post1->getCategory()->getName() will load the category that has category_id 1 ...
3
votes
3answers
44 views

Appending a WHERE clause to a Doctrine_Query [closed]

I have a situation where I want to assemble a Doctrine select query based on weather certain params are empty or not For example, if there was a $slug variable that was optional, i'd want something ...
3
votes
1answer
304 views

Symfony - register system - confirm password and hidden input

I use Doctrine: User: columns: username: { type: string(255), unique: true } password: { type: string(255) } ip: { type: string(255) } This generated me new ...
3
votes
2answers
178 views

Doctrine 1.2: Disabling caching

Similarly to this question, I got some problems with how doctrine caches/hydrates the relations of the result of my query. Now I know I can fix the issue by calling refresh/refreshRelated, but is ...
3
votes
4answers
499 views

Adding virtual columns to current table in Doctrine?

I'm using Doctrine 1.2 with Symfony 1.4. Let's say I have a User model, which has one Profile. These are defined as: User: id username password created_at updated_at Profile: id user_id ...
3
votes
4answers
258 views

How to get the following array from database?

Ok to make it more clear: I am Using doctrine I have a table Brands and Products Brand id name Product id name brand_id I have a lot of brands and Products of those brands in the ...
3
votes
3answers
555 views

Symfony sfDoctrineGuardPlugin custom login query

I use symfony sfDoctrineGuardPlugin to manage authentication for both frontend users and backend users. It's fine, except that I don't want frontend users to be able to login to the backend app. I can ...
3
votes
2answers
806 views

Aggregate values in Doctrine_RawSql queries

Is it possible to use aggregate values in Doctrine_RawSql query? Here's what I'm trying to do: $q = new Doctrine_RawSql(); $q->select('{q.*}, AVG(a.value) AS avg'); $q->from('-- complex from ...
2
votes
1answer
94 views

How to sort fields of a related (joined) table in query results?

Probably related more to SQL than to Dotrine itself. I have two tables, specified in schema file roughly like this: Project: columns: name: { type: string(255), notnull: true } Task: ...
2
votes
1answer
38 views

Get a list of subclasses of my entity in Doctrine 1.2

Is there a method I can call to obtain the name of all the mapped subclasses of an entity?
2
votes
1answer
126 views

Zend Framework + Doctrine1.2 project structure with more modules

applications coupled with the realization ZendFramework + Doctrine 1.2 for some time, but now they have their first experience with the use of more modules. I requested a default module is visible to ...
2
votes
2answers
268 views

Setting up Doctrine_Collection key mapping attribute in schema.yml

In Doctrine 1.2, it is possible to set up Key Mapping for a table where Doctrine_Collection objects created by that table will populate keys from a particular column in each record in the collection. ...
2
votes
1answer
196 views

symfony count user

I use symfony 1.4.12 with doctrine. I have sfGuardUser table; I can count all records like this: $count_user=Doctrine::getTable('sfGuardUser')->count(); I have field in table "created_at"; If ...
2
votes
1answer
97 views

Conditional IF statement in a PHP Doctrine 1.2 SET statement

I would like find the correct syntax for the SET line: Doctrine_Query::create() ->update('Media m') ->set('m.fallback IF(m.id = ?, 1, 0)', $id) <-- not correct ->execute(); Thanks for ...
2
votes
2answers
449 views

Doctrine 1.2 save Record relations UPDATE rather than INSERT

I am trying to save in cascade some users: $user = new User(); $user->name = 'xxx'; $user->location->id = 1; $user->location->name = 'yyy'; $user->save; $user2 = new User(); ...
2
votes
1answer
368 views

Traverse Doctrine NestedSet structure without querying

I usually fetch NestedSet tree like this: class ModelTable extends Doctrine_Table { /** * Gets tree elements in one query */ public function getMenuTree() { $q = ...
2
votes
1answer
49 views

properties of a n:m relation in doctrine

Hy guys I've got the following schema for my objects: Product: columns: name: { type: string(255) } Basket: columns: current_status: { type: integer } relations: ...
2
votes
1answer
415 views

Symfony 1.4 (Doctrine) admin generator: How to call symfony 1.4 admin generated filter options via a url

I have an admin-generated frontend that has lots of filter options available. Can I call the page via a URL and choose different filter options per URL? eg. URL 1 = /clients/filters=caseworker_id=2 ...
2
votes
4answers
935 views

Doctrine : how to manipulate a collection?

With symfony && doctrine 1.2 in an action, i try to display the top ranked website for a user. I did : public function executeShow(sfWebRequest $request) { $this->user = ...
2
votes
2answers
484 views

doctrine select statement always returns all fields of the table

I have the following table Test: tableName: test columns: test_id: name: test_id as id primary: true autoincrement: true type: integer ...
2
votes
2answers
342 views

Doctrine ORM - Prefixing Tables

I'm using Doctrine 1.2, and would like to know how I can achieve mysql table prefixes with it. So for instance I would like for our system to be deployed twice on the same database, the first the ...
2
votes
3answers
466 views

Check for table existence before dropping?

I'm trying to check for the existence of a table before dropping it. I've read through the API documentation for Doctrine_Table and I can't seem to find anything like this. Is there something I'm ...
1
vote
1answer
47 views

Order query by input

I do have a query in a table called article. $q = Doctrine_Query::create() ->from('article a') ->WhereIn('a.name', $input) ...
1
vote
1answer
61 views

Make Doctrine query in ProjectConfiguration class

I need to execute a Doctrine Query in my project configuration class. I tried to put my code in the setup method but it cant find the classes. Do i need to register Doctrine Autoload manually or ...
1
vote
0answers
70 views

Create dynamic XML consists of n parts

I have to create an xml like this: <Flow> <Invoice xsi:noNamespaceSchemaLocation="schema.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> /* more stuff */ ...
1
vote
1answer
86 views

Doctrine Record Listener never fired

I'm trying to create one record listener for all models. In ProjectConfiguration.class.php I added: public function configureDoctrineConnection(Doctrine_Connection $connection) { ...
1
vote
1answer
32 views

How to write the file yml many-to-many table with 3 PrimaryKey

if our situation is the standard view where you have two tables and a ternary, and easily manageable by following the following documentation But if we have three instead of two tables and then the ...
1
vote
1answer
149 views

how to make Doctrine_Expression ( doctrine 1.2 ) try to get last 7 days

I try to make this query with doctrine 1.2: $q->where('date > ?', new Doctrine_Expression('DATE_SUB(CURDATE() , INTERVAL 7 DAY)')); but it's not return me any results. any ...
1
vote
1answer
54 views

Doctrine tries to access a column previously dropped in a migration

I have changed the schema of a Symfony application by transforming a one-to-many relationship to a many-to-many relationship between a Sample model and a Collector model. The Sample model had a ...
1
vote
1answer
168 views

symfony doctrine pagination brings more data than set per page

I am setting 1 row per page in symfony pager but its showing more data than 1. It is because my query is left joining the sfGuardUser table with other tables and it is causing duplication of ...
1
vote
0answers
115 views

count in Doctrine

I have many table: GroupTableOne id | name 1 | GroupTableOne 2 | GroupTableTwo 3 | GroupTableThree 4 | GroupTableFour TableOne id | group_table_one_id | name 1 | 1 | ...
1
vote
2answers
57 views

Reduce connect to database with Doctrine and Symfony

I get all City and use function for count: foreach ($cities as $city) { echo $city->getName() . '|' . CityTable::getInstance()->getCount($city->getId(), a). '|' . ...
1
vote
3answers
95 views

count with doctrine

I have two table: Name id | name | city_id 1 | aaa | 1 2 | vvv | 2 3 | ddd | 2 4 | sss | 3 5 | dds | 1 etc City: id | name 1 | London 2 | NY 3 | Boston etc ...
1
vote
1answer
155 views

Using Mysql data type Set with Doctrine 1.2

We're using a database from a legacy system which includes fields with type Set (http://dev.mysql.com/doc/refman/5.0/en/set.html) We need to generate base models constantly from the database. The ...
1
vote
1answer
82 views

Doctrine how to write fixtures for self referencing relations

I'm having trouble in defining fixtures for self referencing relations in Doctrine 1.2, suppose I use the code from the manual, how to write fixtures for that? I tried with this fixture file User: ...
1
vote
2answers
68 views

Query table in DQL to get records created in the past week

I'm trying to write a query in Doctrine that will return records added within a certain numbr of days, I have this line in my query but doesn't work as expected: $q->andWhere('g.date_added >= ...
1
vote
2answers
263 views

sfWidgetFormDoctrineChoice for NestedSet model

I'm experiencing a difficulty in rendering sfWidgetFormDoctrineChoice (set of checkboxes) widget for a NestedSet structure. class ModelForm extends BaseModelForm { public function configure() { ...
1
vote
1answer
22 views

Trouble loading multiple versions of the same Doctrine_Record

The following code snippet demonstrates some peculiar behaviour from Doctrine. $user = Doctrine::getTable('User')->find(1); $user->name = 'Zoppy'; // This line prevents the subsequent ...
1
vote
1answer
51 views

Form with two classes and relation

i have in Doctrine 1.2: User: columns: login: { type: string(255), notnull: true } password: { type: string(255), notnull: true } Student: columns: user_id: { ...
1
vote
1answer
152 views

Doctrine auto-truncate values on insert

I'm working on a script that reads XML from a third party partner and places the data in a database table. I have no control over the length or quality of the content. I want to avoid adding logic ...
1
vote
1answer
106 views

How to cache aggregate column values on Doctrine_Record instance?

Lets say i have a record class that often gets queried with dyanmic colums that are MySQL aggregate values: $results = Doctrine_Core::getTable('MyRecord')->creatQuery('m') ->select('m.*, ...
1
vote
1answer
115 views

How can admin generator modules be enhanced with needed features of Doctrine actAs Versionable?

We're using actAs: Versionable for one model in our Symfony 1.4 app. We currently edit this model using an admin-generator module. The UI gives no indication that versioning is active at all. I ...
1
vote
3answers
210 views

My doctrine is Really Slow. Simple query and one second to get the result

Here is my setup: Windows Server 2008 R2 MySql 5.1.562 Php 5.3.2 Doctrine 1.2 Anybody have an Idea why my query is taking about one second to perform a simple query. echo date("Y-m-d H:i:s", time()) ...

1 2 3 4