Tagged Questions
169
votes
35answers
62k views
Good PHP ORM Library?
Is there a good object-relational-mapping library for PHP?
I know of PDO/ADO, but they seem to only provide abstraction of differences between database vendors not an actual mapping between the ...
45
votes
9answers
5k views
Doctrine2: Best way to handle many-to-many with extra columns in reference table
I'm wondering what's the best, the cleanest and the most simply way to work with many-to-many relations in Doctrine2.
Let's assume that we've got an album like Master of Puppets by Metallica with ...
35
votes
7answers
13k views
PHP ORMs: Doctrine vs. Propel
I'm starting a new project with symfony which is readily integrated with Doctrine and Propel, but I of course need to make a choice.... I was wondering if more experienced people out there have ...
33
votes
1answer
5k views
data mapper vs active record
What are the advantages and disadvantages of both active record and data mapper?
Please be PHP-specific, where the language matters.
Personal experiences are welcome! Ideally with both.
21
votes
2answers
2k views
Doctrine 2 Inheritance Mapping with Association
NOTE : if what I want is not possible, a "not possible" answer will be accepted
In the Doctrine 2 documentation about inheritance mapping, it says there are 2 ways :
Single table inheritance (STI)
...
17
votes
20answers
9k views
Simple PHP ORM
I'm looking for an ORM (Object-Relational Mapper) for PHP. I want something simple that I can get started with quickly. I'm used to ActiveRecord in Rails, but I don't need a full framework. My partner ...
15
votes
3answers
799 views
Redbean vs Doctrine
I found RedBean today on StackOverflow and was wondering when/whether to use it instead to Doctrine.
I have read a lot about Doctrine and was just starting to use it. Even if it's working now I think ...
14
votes
1answer
900 views
Generated Doctrine models respect case, but generated Yaml does not
Just getting started with Doctrine ORM for PHP (v1.1.5) and ran into something unexpected.
I am generating models from the db (MySQL 4) using:
Doctrine::generateModelsFromDb($pathToModels);
Then ...
13
votes
2answers
2k views
php ORM - RedBean in production?
I would like to know how many of you are using RedBean ORM in your php production sites and what is your experience with it (reliability, speed, problems (if any),...)?
Thank You.
11
votes
7answers
6k views
Zend Framework 1.11 with Doctrine 2 Integration
Could someone explain in detail how to integrate Doctrine 2 and Zend Framework 1.11?
11
votes
3answers
5k views
Doctrine - How to print out the real sql, not just the prepared statment?
We're using Doctrine, a PHP ORM. I am creating a query like this:
$q = Doctrine_Query::create()->select('id')->from('MyTable');
and then in the function I'm adding in various where clauses ...
9
votes
2answers
298 views
Is ORM all or nothing?
If I use an ORM let's say with Zend or Symfony. Is it an all or nothing deal?
I'd like to use the ORM, but also want to optimize performance in some cases and write the query myself to get to the ...
9
votes
8answers
2k views
Simple(r) ORM for PHP
What is the simplest ORM implementation around for PHP? I'm looking for something really simple and light (in terms of LOC, since speed it's not crucial I don't need caches and what not), preferably a ...
8
votes
2answers
408 views
Tips/resources/patterns for learning to implement a basic ORM
I've seen various MVC frameworks as well as standalone ORM frameworks for PHP, as well as other ORM questions here; however, most of the questions ask for existing frameworks to get started with, ...
8
votes
3answers
2k views
Zend Framework ORM-style table data gateway vs. extending Zend_Db_Table_Abstract
In the Zend Framework Quickstart, there has been a change from models that extend Zend_Db_Table_Abstract to the Table Data Gateway pattern.
Personally, I have not had much experience with this ...
7
votes
2answers
3k views
implementing “update if exists” in Doctrine ORM
I am trying to INSERT OR UPDATE IF EXISTS in one transaction.
in mysql, I would generally use DUPLICATE KEY ("UPDATE ON DUPLICATE KEY".) I'm aware of many solutions to this problem using various ...
6
votes
1answer
445 views
Doctrine 1.2 auto-join i18n?
I would like to extend the i18n behavior, so that it joins the translation table automatically, on any type of query (DQL, relations, getTable).
Additionally it needs to define the default language ...
6
votes
3answers
889 views
Doctrine 2, inserting an entity with associations, is there a way to just use the FK of the associations instead of retrieving the entity?
just getting started with Doctrine 2 and have a newbie question regarding inserting an entity which has associations. If I already have the FK's of the associated entities, is there a way to insert ...
6
votes
1answer
3k views
Doctrine 2 ManyToMany cascade
Is it possible in Doctrine 2 to create two objects that are many to many related and call persist only on one of them to save both?
User entity:
/**
* Owning Side
*
* ...
6
votes
5answers
251 views
Using ORM classes directly from the controller in MVC, bad practice?
I've recently delved into using an ORM in my CodeIgniter application and one i've gone for is Propel. Now this gives me the power to basically use Propels classes as the 'Model' but is this bad ...
6
votes
3answers
1k views
How to Zend Framework with Propel ORM
I'd like to integrate Propel with Zend framework. I've seen the integration of doctrine in the past but this post says it seems propel is done a bit differently.
Propel has two things going for it
...
6
votes
3answers
750 views
Using the Data Mapper Pattern, Should the Entities (Domain Objects) know about the Mapper?
I'm working with Doctrine2 for the first time, but I think this question is generic enough to not be dependent on a specific ORM.
Should the entities in a Data Mapper pattern be aware - and use - ...
6
votes
5answers
693 views
What does a Data Mapper typically look like?
I have a table called Cat, and an PHP class called Cat. Now I want to make a CatDataMapper class, so that Cat extends CatDataMapper.
I want that Data Mapper class to provide basic functionality for ...
6
votes
2answers
2k views
Magento ORM Documentation
Outside of the source code, is there any extensive documentation on the Magento ORM? I get the basics, and can usually dig through the Mage code base, litter it with Mage::Log calls and figure out ...
6
votes
1answer
837 views
How to Design Domain Layer Objects to Represent Multiple Objects & Single Object in Zend Framework?
I'm working on creating a domain layer in Zend Framework that is separate from the data access layer. The Data Access Layer is composed to two main objects, a Table Data Gateway and a Row Data ...
6
votes
11answers
7k views
What is the easiest to use ORM framework for PHP?
I'm looking for Ruby's Active record for PHP. Something that is so simple that I just define my fields, extend the base ORM class, and I get ACID operations for free. I should get default getters and ...
5
votes
1answer
153 views
SQL parser in PHP?
UPD: Admin changed the title and I've found the solution:
http://code.google.com/p/php-sql-parser/
I'm trying to convent sql query to php array.
For example:
SELECT col_name FROM tbl_name WHERE ...
5
votes
2answers
182 views
How complex should models be?
When implementing models using the MVC pattern, how complex should my models be?
Let's say I have got a few tables like so:
User (id, password, created ...)
Emails(user_id, email ...)
Addresses ...
5
votes
1answer
292 views
Doctrine 1.2 class table inheritance workaround?
ok, first of all, I know this is not possible with 1.2., that is why I'm looking for a workaround.
And no, unfortunately I can't use Doctrine 2, because my shared hosting server is stuck at PHP ...
5
votes
2answers
232 views
Object acting like an array? (PHP)
I have seen something like this in an ORM:
$b = new Book();
$b->limit(5)->get();
echo 'ID: ' . $b->id . '<br />';
echo 'Name: ' . $b->title . '<br />';
...
5
votes
2answers
259 views
OutletORM and phpDataMapper
I've been playing around with two nice php based ORMs. OutletORM and phpDataMapper.
Does anyone have experience with them? Any advantages of one over the other. It's also a good question to ask which ...
5
votes
2answers
3k views
How to generate Doctrine models/classes that extend a custom record class
When I use Doctrine to generate classes from Yaml/db each Base class (which includes the table definition) extends the Doctrine_Record class.
Since my app uses a master and (multiple) slave db ...
5
votes
2answers
2k views
kohana transaction with orm
is it possible (how) to use mysql transactions and rollbacks using kohana ORM ?
5
votes
25answers
3k views
Why a very good PHP framework - Qcodo (or Qcubed - its branch) - is so unpopular?
I am wondering why this framework (QCodo) is almost forgotten and totally unpopular.
I've started using it a few years ago and it is the only thing that keeps me with PHP. Yeah ... its development ...
5
votes
7answers
3k views
What's your experience with Doctrine ORM?
What's your experience with doctrine?
I've never been much of an ORM kind of guy, I mostlymanaged with just some basic db abstraction layer like adodb.
But I understood all the concepts and benifits ...
5
votes
5answers
7k views
Symfony app - how to add calculated fields to Propel objects?
What is the best way of working with calculated fields of Propel objects?
Say I have an object "Customer" that has a corresponding table "customers" and each column corresponds to an attribute of my ...
4
votes
2answers
140 views
Zend Framework ORM(TDG) vs Doctrine
In short, what is better and why ?
I currently using Zend Framework ORM but am considering move to Doctrine.
Could that someone who already moved to Doctrine (from Zend FW ORM) says the experience?
...
4
votes
4answers
226 views
Symfony2 users with doctrine
I'm looking for best practices to fetch users created content.
I have $user object form 'security.context' and I need to get single record created by this user by some $record_id,
so what I should ...
4
votes
1answer
101 views
Doctrine 2 Concrete Table Inheritance with Associations
I have read Doctrine 2 Inheritance Mapping with Association but say if you needed Animal to be an entity in its own right, say for creating option lists.
In this case the Discriminator Column for a ...
4
votes
3answers
590 views
RedBean ORM perfomance
i would like to know that does redbean orm can be used for perfomance oriented scenarios like social networking web apps and does it stand stable even if more than thousands of data is pulled by a ...
4
votes
2answers
351 views
Doctrine2 - annotations vs yml / xml
What's the plus side of annotations for entity description in Doctrine2?
In Doctrine1 & Propel (which I've used many times), reverse-engineering a database to create yml or xml, then generating ...
4
votes
2answers
828 views
Primary key and foreign key with doctrine 2 at the same time
I have the two tables :
table A with id as primary key
table B with id as primary key and foreign key
Explanation on short:
I need to have in table B a primary key that also to be a foreign key ...
4
votes
4answers
386 views
Doctrine transaction using too much memory issue
I keep on getting this error when running one of my scripts;
PHP Fatal error: Allowed memory size
of 1073741824 bytes exhausted (tried
to allocate 71 bytes) in ...
...
4
votes
1answer
279 views
Doctrine ORM table with schema annotation
Schema and table name in Postgres are case sensitive. How can I specify correct schema in docblock annotations so they are not converted to lowercase?
Neither of these works:
...
4
votes
1answer
749 views
Kohana ORM custom methods in models
I have these two models:
class Model_user extends ORM {
protected $_has_many = array('credits', array('model'=>'credit', 'foreign_key'=>'user'));
}
class Model_credit extends ORM {
...
4
votes
2answers
286 views
What are the differences between Doctrine1 and Doctrine2?
I have only started discovering Doctrine and noticed the official documentation points to 1.2 as this seems to be the current stable version.
I also noticed that a lot of people seem to mention ...
4
votes
1answer
1k views
Kohana 3 ORM: advanced queries, efficiency
So we all know that the documentation for Kohana 3 is absolutely horrible. So how can I construct the following query, where I have a "Player" and "Dragon" model?
SELECT * FROM `dragons` JOIN ...
4
votes
2answers
376 views
Decreasing queries in MySQL with many one-to-many relationships (ORM)
I'm currently designing an application using PHP and MySQL, built on the Kohana framework. I'm making use of the built in ORM and it has proved to be extremely useful. Everything works fine, but I'm ...
4
votes
2answers
1k views
Good comparison Doctrine vs Propel
I've seen plenty of comparisons of Doctrine vs Propel, but none of them has actually convinced me to choose Doctrine over Propel.
I've been using Propel for a while now and almost every comparison I ...
4
votes
1answer
196 views
Mixing Zend_Db with ORM Classes
Zend has Zend_Db but it's not a full ORM. I already have sections of an app written in a way that uses Zend_Db. I do however want to integrate a full ORM into the application to use it for more ...