|
|
|
|
|
by dragonwriter
4336 days ago
|
|
> If you are taking data out of a relational database and mapping it into objects, you are implementing an ORM. No, ORM is a particular approach to doing that; the query abstraction approach described upthread is closer to the DAO pattern, to which ORM is an alternative. People were using RDBMSs to provide a persistence layer for OO programs before ORM was a thing, but as you have broadened the term any use of an RDBMS to store/retrieve data used in an OO program would be "ORM". |
|