Object-Relational Mapping: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
No edit summary
Line 17: Line 17:


==ORM Advantage and Disadvantage==
==ORM Advantage and Disadvantage==
ORM is a rapidly growing and popular methodology that provides clear advantages to the developer:
Eliminates the fragility of coding CRUD statements to persist data to and from the database
Allows logic, business rules and validation to be introduced to the data
Provides domain objects that are easy to customise and manage in code
Hides the differences between various databases or data sources
Saves vast amounts of coding effort


==Database Support==
==Database Support==

Revision as of 15:12, 13 September 2014

ORM Definition

Overview

ORM Architecture and Framework

Comparison with Traditional Methods

Simple Example with ORM

ORM Language

ORM Tools

Comparison between ORM tools

ORM Advantage and Disadvantage

ORM is a rapidly growing and popular methodology that provides clear advantages to the developer: Eliminates the fragility of coding CRUD statements to persist data to and from the database Allows logic, business rules and validation to be introduced to the data Provides domain objects that are easy to customise and manage in code Hides the differences between various databases or data sources Saves vast amounts of coding effort

Database Support

See Also

References

External Links