5
Reply

What is ORM?

Sanjay Irnai

Sanjay Irnai

Nov 05, 2012
3.8k
0

    ORM provide an object oriented query language. This allows application developers to focus on the object model and not to have to be concerned with the database structure or SQL semantics. The ORM tool itself will translate the query language into the appropriate syntax for the database.

    shankar kumar
    February 07, 2014
    1

    ORM provide a host of services thereby allowing developers to focus on the business logic of the application rather than repetitive CRUD (Create Read Update Delete) logic.

    shankar kumar
    February 07, 2014
    0

    Object-relational mapping (redirect from O-RM) Object-relational mapping (ORM, O/RM, and O/R mapping) in computer software is a programming technique for converting data between ...

    Dinesh Maurya
    November 16, 2012
    0

    Object-relational mapping (redirect from O-RM) Object-relational mapping (ORM, O/RM, and O/R mapping) in computer software is a programming technique for converting data between ...

    Dinesh Maurya
    November 16, 2012
    0

    Object-relational mapping (ORM) ORM is a mechanism that makes it possible to address, access and manipulate objects without having to consider how those objects relate to their data sources. ORM lets programmers maintain a consistent view of objects over time, even as the sources that deliver them, the sinks that receive them and the applications that access them change.Through abstraction, ORM manages the mapping details between a set of objects and underlying relational databases, XML repositories or other data sources and sinks, while simultaneously hiding the often changing details of related interfaces from developers .

    Yogesh Sharma
    November 09, 2012
    0