ORM
Updated at: 7 October 2024
ORM
**ORM **(Object-Relational Mapping) is a programming technology whose essence is to create a "virtual object database".

With this technology, developers can use the programming language they are comfortable with to work with the database instead of writing SQL statements or stored procedures. This can greatly speed up application development, especially in the initial stages. ORM also allows an application to be switched between different relational databases. For example, an application can be switched from MySQL to PostgreSQL with minimal code changes.