Doctrine 1.2 is a PHP (5.2.3+) ORM. While Doctrine 2.0 uses the Data Mapper pattern, Doctrine 1.2 uses the Active Record pattern.

learn more… | top users | synonyms

0
votes
0answers
14 views

Doctrine 1.2 query and sort multiple joined relations using one DQL

Using Doctrine 1.2, is it possible to sort and limit each relation independently using one single DQL? Suppose there is a table named Person with one-to-many relationships Activity and Transaction. ...
1
vote
0answers
18 views

doctrine relation on integer field returns string

My schema.yml Organisation: columns: id: { type: integer(4), notnull: true, unique: true, primary: true, autoincrement: true } name: { type: string(100), notnull: true, unique: true } ...
0
votes
0answers
7 views

how i can use union and union all in Doctrine1.2

SELECT avg(mw) as av FROM meter_reading WHERE hierarchy_id in(1,2) and union all SELECT avg(elec) as av FROM meter_reading WHERE hierarchy_id in(1,2) (Example)
0
votes
0answers
47 views

Doctrine 1.x - Unknown record property bug after free()

Lets say we have table Media and "hasOne" Supplier relation. $mediaA = Doctrine::getTable('Media')->find(534); $mediaB = Doctrine::getTable('Media')->find(537); Both $mediaA & $mediaB ...
-1
votes
1answer
41 views

Override execute() function to use a predefined query

I have a symfony application with several tables (or objects) that are associated with a place. Sometimes, throughout the app, I have to make some complex filtering (queries) to those objects based on ...
1
vote
1answer
32 views

doctrine 1.2 how to get an object by id?

How can i get an object using his Id in doctrine 1.2 ? Without writing sql or Dql. I did not find it in the docs: ...
0
votes
1answer
38 views

Doctrine update php models according to db

I need to maintain a symfony 1.4 app , the app uses doctrine (1.2 I guess). The problem is that people modified the databse without using doctrine. To fix this i tried to update the doctrine models ...
0
votes
0answers
23 views

Doctrine Paging

I have used pagination of doctrine.I have implement it successfully,But my problem is when the user click on the last page.In the pager after last page anchor tag,there are two empty anchor tag and if ...
0
votes
0answers
8 views

Strange behaviour with Doctrine_Query in Doctrine 1.2

I have a query that has multiple orWhere statements. The PHP code looks like this: $firstDay = $params['datetimeForMonth']->format('Y-m-d'); $lastDay = ...
1
vote
1answer
48 views

Doctrine limit is breaking my query?

I have the following code: $params = array(); $query_questions_visibles = questionTable::getInstance()->createQuery("q") ->select("q.*, ua.*, a.*, u.*, c.*") ->leftJoin("q.Answers ...
0
votes
1answer
57 views

how can I make symfony see my new relations between tables?

I am using symfony 1.4 for a project (already started), now I am changing some stuffs and I get an error of relations when I query for some info between two tables, one already exist and the other one ...
2
votes
1answer
36 views

Universally extending doctrine_table in symfony project

I have a symfony project (1.2). What I would like to do is ensure that when symfony build happens, instead of creating tables that extend doctrine_table they extend custom_table . This way I can ...
0
votes
0answers
29 views

Load array to Doctrine_Collection

The question is about doctrine 1.2 and Symfony 1.4 In short: I am running simple SQL query and fetching results into array with PDO. After it, I create Doctrine_Collection of the same table I've ...
0
votes
0answers
15 views

What's the most efficient way to get a all Doctrine models with a given behavior?

I have a (legacy) Symfony 1.4 application with Doctrine 1.2. My application has a whole bunch of model classes, I want to fetch just the ones with a given Doctrine Behavior. Right now, I: Fetch ...
0
votes
5answers
46 views

Doctrine where not

I have a table in DB like that i want to select all except the record contain (x=1, y=1) i mean the id=8 id | x | y --------------- 1 | 2 | 1 2 | 0 | 1 3 | 5 | 6 4 | 6 | 4 5 ...
0
votes
0answers
72 views

Doctrine findBy() Can't Find A Row In A Table

I'm attempting to use Doctrine as the 'model' of an MVC framework app I wrote. I have a situation where I want to store a 'free space' record for every 'rack' record. I want to be able to get the ...
0
votes
0answers
61 views

Strange characters after inserting string from utf8_decode into a mysql table with PHP 5.3/Doctrine 1.2

I'm consuming a xml (i get it by a rest service). At one point i decode a CDATA field as: $version_doc = $this->getSimpleXml($uri); if($version_doc != false){ $equipment = ...
0
votes
1answer
44 views

Can I cast parent record object to child record when using concrate table inheritance?

I can't seem to find a proper way to cast a parent record object to a child record object. My models look like this: ModelA: columns: col_a:integer ModelB: inheritance: type: ...
0
votes
1answer
27 views

Get filtered related data without excluding first table rows if there's no related data in second table

Having two related tables, Car and CouponException, I wanna get all cars within an array of models and also get the CouponExceptions related to every Car, but the tricky thing comes here.. i only want ...
0
votes
0answers
54 views

Many-to-many joining table being saved before outer table has id

I have two tables habitat_quadrat and shellfish_type that are joined by habitat_shellfish. I am trying to create a form to create new habitat_quadrats but when it tries to save I get a Doctrine ...
0
votes
0answers
43 views

How order nested set table by position field

I have nested set model, here is schema: Menu: actAs: NestedSet: hasManyRoots: true rootColumnName: root_id Sortable: ~ columns: name: string(255) link: string(255) ...
0
votes
2answers
65 views

Doctrine multi-row groupBy count

I have the following Query with doctrine: $q = Doctrine_Query::create() ->select("q.id, q.user_id, count(ua.id) as quantity") ->from("question q") ->leftJoin("q.Answers a") ...
0
votes
1answer
45 views

Proxy Class for Doctrine 1.2 models

I am writing an application where I route my methods from my application to a sevice and then to the models of Doctrine. But the server of the service is not allowing more than one class to be ...
1
vote
1answer
52 views

How do I make doctrine do not try to update a table?

I'm working on a project where we use views to create a interface/layer between another system which is a datasource but have no matching model. This way, in my system, these views are in fact models. ...
0
votes
1answer
109 views

Confusion of slug with route part “new” etc

I have a sfDoctrineRouteCollection: foo: class: sfDoctrineRouteCollection options: model: Foo columns: slug action: [list, show, new, create, edit, update, delete] If someone now ...
0
votes
1answer
25 views

Doctrine - ModelClassName not found

I am new to doctrine(using version 1.2) and following the steps given in the documentation manual. I've installed and configured it perfectly. But i have a problem while working with models. I have ...
0
votes
1answer
61 views

How to set relations in Doctrine 1.2 for mapped through table?

Tables: tbl_user(id, name) tbl_group(id, name); tbl_user_group(user_id, group_id); If there were all three classes generated User,Group,UserGroup. How should i setup the relations in User or Group ...
0
votes
2answers
296 views

symfony 1.4 how to globally unset, hide or make read only a form widget?

In my application I have a lot of modules and a lot of forms with their own widgets. I have been trying to Globally 'unset', 'hide' or 'make read only' a widget. I know that its possible to do it for ...
0
votes
1answer
76 views

Doctrine 1.2 hasOne overwrites hasMany Relation

In a Doctrine 1.2 project we've got a User User: columns: id: type: integer(4) autoincrement: true primary: true payment_method: type: integer(4) relations: ...
0
votes
0answers
32 views

Saving embedded forms won't save embedded form's fields

In an admin-generator, I have a sfGuardUserAdminForm which embeds a SalarieForm. The mechanism seems to works (my fields appear, etc), but when I save, I get SQLSTATE[23000]: Integrity constraint ...
0
votes
1answer
64 views

Error using _redirect function on ubuntu

I am developing a system in Zend Framework and I implemented user/rol authentication using Zend_Auth for security and it work receiving user/password information and return the Model User with each ...
0
votes
0answers
42 views

Zend not autoloading Doctrine library when Debuging from Zend Studio and Zend Server

I am working on a Zend 1.2 + Doctrine 1.2 Project using Zend Studio 9.0.4 and the Latest Zend Server CE. I have Setup my application in Zend Server as a Virtual Host which works fine when I use it ...
3
votes
1answer
304 views

Select One column Doctrine DQL

I need a simple column for a table. By example a table "project", with column id, name and year. If I do: $q = Doctrine_Query::create() ->select('a.pro_id') ...
0
votes
2answers
172 views

Implementing SELECT query inside another SELECT query in DQL (Doctrine)

I have a SQL query for MySQL which is giving me the correct result. However, I'm facing a problem in converting it to a Doctrine query with DQL. SELECT Sum(s) AS s FROM (SELECT DISTINCT ...
0
votes
1answer
107 views

symfony many to many

I'm looking at creating the following scenario. I have many templates I have many users (sfGuardUser) I want it so when I edit a template, I can assign many users to a particular. Am I correct in ...
1
vote
0answers
42 views

Complex relationships with Doctrine

I'm building a platform where visitors can fill out forms to request quotes for products and services in various markets. Example: visitor John Doe wants to have solar panels installed on his roof. ...
1
vote
1answer
154 views

How to sort FK filter in symfony's admin generator using Doctrine?

I've got a symfony admin generated module for my Poem class. My poem table has a foreign_key constraint to my MasterIndex table (user_id). When using the Symfony admin generator, in list mode, it ...
0
votes
1answer
307 views

Doctrine 1.2/Symfony 1.4 not generating proper foreign-key relationships?

I've inherited a Symfony 1.4/Doctrine 1.2 application that I have to maintain. I am trying to make some changes to the schema.yml file and generate new models and sql defns from it, but for some ...
0
votes
0answers
54 views

Doctrine 1.2 using Setter methods in Base Class to execute updates [closed]

Doctrine 1.2, as you would know, generates three different cards for any single database table, i.e BaseTablename.class.php, Tablename.class.php, TablenameTable.class.php. BaseTablename.class.php ...
0
votes
0answers
26 views

Doctrine Performance boost by turning unneccessary features off

I have some cron jobs that run php under cli, they create tons of new entities and save them. My script was taking so long, so instead of using doctrine to save data (persist, then flush), I wrote ...
0
votes
1answer
61 views

How to upgrade From Doctrine 1 to Doctrine 2?

I'm using Doctrine 1 with Zend framework, and I have to upgrade from Doctrine 1 to Doctrine 2 to use Data mapper instead of active record design patterns. Is there anyway or instructions to do it?
0
votes
4answers
117 views

How to destruct an object in symfony 1.4? [duplicate]

Possible Duplicate: php/symfony/doctrine memory leak? I need to know if there is a way to destroy an object in symfony 1.4, because I have a cicle for that insert on database. foreach ...
0
votes
0answers
90 views

Best practice for Symfony data migration

What's the best practice for data migration in Symfony in the following scenario: There's a new table to be added to the database There're previously loaded fixtures that have changed and additions ...
0
votes
1answer
78 views

Doctrine Query whereIn and orWhere

My query is this : $q = Doctrine_Query::create() ->from('plans p') ->whereIn('c.centerid',$centers) ->andWhere('p.agecategory = ?', $ageType) ...
0
votes
1answer
65 views

How to stop Doctrine from returning a primary key for every query

I am kind of annoyed at Doctrine for returning primary keys in each and every query even though I don't want it to. Is there anyway to stop this ? coz I don't really want those damn primary keys along ...
0
votes
1answer
95 views

execute function on Database using doctrine and symfony

I have function on the database named getDtails(id) using CREATE FUNCTION on mysql I can call it from mysql using SELECT getDetails(10) which return aninteger. i want to execute it from symfony 1.4 ...
0
votes
0answers
49 views

Apply an sfValidator only when the object is updated

I have a table article which does have two articles with the same name so I created an sfValidator and I like to apply ONLY when the object is edited public function configure() { ...
0
votes
1answer
51 views

Nested conditional statements in Doctrine 1.2

I'm working with a legacy system that uses Doctrine 1.2. I'm trying to create a query with multiple nested conditions that look something like this: SELECT DISTINCT u.* FROM Users AS u INNER JOIN ...
0
votes
1answer
108 views

Doctrine: merge 2 requests in 1

I would like to merge these 2 requests in 1 but I have no clue on how to do this. Any idea ? $productsCount = Doctrine::getTable('Product') ->createQuery('p') ...
0
votes
1answer
166 views

Symfony 1.4 Merge 2 of the same object and update the old record

I have the following problem. I'm having an object which I retrieved from the form, and I compare the results to the database which has an older version of form saved as an InspectionReport object. ...

1 2 3 4 5 7