Tagged Questions
3
votes
1answer
350 views
Advantages of using Doctrine for PHP?
Just came across the Doctrine Project which has an Object Relational Mapper and a DB Abstraction Layer. What does Doctrine provide that other PHP abstraction layers don't? And what practical use can ...
2
votes
4answers
139 views
Where do ORMs fall through?
I often hear people bashing ORMs for being inflexible and a "leaky abstraction", but you really don't hear why they're problematic. When used properly, what exactly are the faults of ORMs? I'm asking ...
0
votes
1answer
287 views
Is there a way of using PHP-ActiveRecord as symfony's ORM/abstraction layer?
I just discovered PHP-ActiveRecord not too long ago after struggling for nearly a month to write my own ORM (I'm hard headed like that) and I fell in love with it. I had looked at Doctrine and Propel ...
0
votes
1answer
120 views
Database Abstraction - what are the options?
How can I abstract my database from my application so that it is unaware of the database type?
I have to design a .Net 3.5 WPF application that must support either SQL Server or Visual FoxPro as the ...