Tagged Questions

0
votes
1answer
22 views

PHP - Doctrine saving to more than one table

Hi, I have a table that is related to another. Is it possible to use the auto incremented Id of table one as the foreign key of table two in one statement, rather than using lastIn …
1
vote
2answers
46 views

PHP Doctrine relationships and inheritance

Hi, I've been looking at Doctrine and it seems like a good way to manage models in my OO PHP application. I would like to create Models that have some optional properties. Rath …
0
votes
2answers
28 views

PHP Doctrine ORM newbie - Valid DSN for dropping database?

Hi, I'm going through the tutorials for doctrine and liking it so far, however I'm stuck at the point of dropping/regenerating the db schema. This is the code I am using (pretty m …
0
votes
1answer
20 views

PHP Doctrine Inheritance

Hi, I'm reading through the Doctrine documentation but I can't find a way to implement the type of inheritance I want to use. I would like to set up a hierarchy like so: Node -& …
0
votes
1answer
26 views

Convert date to string upon saving a doctrine record

Hi, I'm trying to migrate one of my PHP projects to Doctrine. I've never used it before so there are a few things I don't understand. In my current code, I have a class similar to …
2
votes
2answers
32 views

Doctrine ORM: Create Table Like Another

Hello, Is there any way, when using Doctrine, to create a table like another? I know in MySQL there is a function to do so: CREATE TABLE user2 LIKE user; and tables user and u …
1
vote
2answers
48 views

Doctrine - How do you ask WHERE cond1 AND ( cond2 OR cond3)

While using Doctrine in a Symfony project I've come into the situation where I need to apply a condition and then one of two following conditions (which both happen to be sub-queri …
0
votes
2answers
18 views

Symfony difference between <ModelName>.class.php and <ModelName>Table.class.php

Cuold someone explain me the difference between the Doctrine auto generated files .class.php and Table.class.php? For example in the Jobeet tutorial there's JobeetJob.class.php and …
0
votes
1answer
19 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 th …
0
votes
2answers
20 views

Doctrine - filter by foreign agregate value

Hi there, 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_phonenumbe …
0
votes
0answers
48 views

how to resolve symfony doctrine:build-schema error (Unknown relation alias table_name)

how to resolve this symfony error : C:\inetpub\wwwroot\project\trunk\preprod\signup>php symfony doctrine:build-schema --trace >> doctrine generating yaml schema from dat …
1
vote
1answer
39 views

Many-to-many relation with attributes in refClass

Hello, I'm currently designing a website, using symfony (1.2) with Doctrine as an ORM. I have a Dinner class, a Criteria class, and a Mark class. A Mark is linked with a Dinner …
0
votes
1answer
63 views

How to make Doctrine use a MySQL TIMESTAMP column instead of DATETIME?

I'm looking for a way to use the MySQL timestamp column type in Doctrine 1.0. I was able to get it working by modifying Doctrine_DataDict_Mysql to return TIMESTAMP instead of DATET …
0
votes
2answers
57 views

Doctrine PHP Question

I was wondering if you can specify the order in which table definitions and data fixtures are loaded using the CLI. My problem is that I have two tables, each having a foreign key …
1
vote
1answer
34 views

Doctrine and Zend_Form Validation

I am using Zend Framework and Doctrine on a project and was wondering if anyone can suggest a good way to integrate Doctrine's validation with Zend_Form. I'm trying to avoid code d …

1 2 3 4 5 6 next
15 30 50 per page