DEV Community

Madhura Rahate
Madhura Rahate

Posted on

What is ORM

ORM is a technique or a Design Pattern used to access relational database from an object oriented language.
AN ORM tool is software designed to help OOP developers to interact with relational database in a simpler manner.
AN ORM converts data between two incompatible type systems (Java and MySQL). Such as a model class becomes table in our database and each object is a row of the table.

Top comments (0)