I'm setting up a project with Doctrine 2.1.5. I have got few tables without primary keys. I added some primary keys temporarily to generate Entities and Repositories.

But I will delete the fake primary key columns and remove the reference from Doctrine Entity as well.

Also I will be defining few columns as composite primary key in those table Entities (but not in tables).

Will there be any consequences (eg: wrong result from query or failing query) when joining those entity classes Because of 1. not having PK in database 2.adding fake composite primary key in entity classes?

Lots of tutorial and blogs mentions that needs to have primary key. But, never anything mentioned (which I can find) that the above solution is not a problem. (or it is a problem).

An answer from real experience would be great. But everyone welcome.

Thanks in advance for help. P

link|improve this question
1  
Let's phrase it this way: Any normalized DB Schema has a PK on every table. So while Doctrine may be the fuse, your Schema is the bomb. Don't let it explode on you. – Eugen Rieck Feb 7 at 23:32
Thanks Eugen. Thats true and I also believe forcing good design is good thing. when I will still be waiting for more descriptive answer ;) , just a question to you though, what do you think an alternate is, when you have no option to change DB Schema? By the way, I'm using ZF1.11 . (My other choices are Probably, Zend_Db_Table with relationship, Doctrine 1.x, PDO, or anything you have experience). Thanks for reply again. – Webghost Feb 7 at 23:39
From your OQ I added some primary keys temporarily I did not understand, that you have no option to change the DB schema, sorry for that. What hinders you from keeping these? – Eugen Rieck Feb 7 at 23:45
Well, I will be able to make changes on my development box but not on the production cause of some Legacy reasons as few other applications using the same database which is not in hand. – Webghost Feb 7 at 23:48
Doctrine will always throw an exception If u dont have PK (@Id annotation). – CappY Feb 8 at 19:35
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.