Get Free Audit

Magento 2 Database. Basic Principles

Jan 16, 2018

1416 Andrey Litvin

Magento 2 Database. Basic Principles

The theme has been already discussed in the article “Database in Magento 2: Models, Resource Models, and Collections”. Now we’re going to extend the topic and add more details in order to provide you with an advanced information.

Basic principles

Magento ORM consists of three main entities: Models, Resource models, and Collections. Models contain entity-specific data operations and logic. Resource models contain mappings and database fetching/saving code while collections are responsible for group operations.

Magento database_(3)

In order to create a model, you have to extend \Magento\Framework\Model\AbstractModel class and override _construct method where you’ll have to pass Resource Model to _init method call.


Note that this is a single-underscore construct method. This method is a legacy code from Magento 1 and it is called in real _construct method of \Magento\Framework\Model\AbstractModel.

In order to create a Resource Model, you need to extend \Magento\Framework\Model\ResourceModel\Db\AbstractDb class and override again single-underscore _construct method, but now you need to pass table name and id field to _init call.


Collections can be created by extending \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection class. Here again overridden _construct method should pass Model and Resource model class names to _init method.

Configuring database connection

Magento 2 database connection settings can be found in app/etc/env.php file:

Saving/loading process

For basic entities saving and loading processes are implemented in Resource model’s \Magento\Framework\Model\ResourceModel\Db\AbstractDb class.

Loading Entities

\Magento\Framework\Model\ResourceModel\Db\AbstractDb::load is responsible for fetching model data from storage and returning model with hydrated data.

Andrey_Dubina
Partner With Us Let's discuss how to grow your business. Get a Free Quote.
Talk to Andrey


This method receives model object, value and field variables, where field and value are database column names and it’s value by which model should be fetched. If field name is not specified, then id field from this Resource model will be used.

First load method performs any “before load” operations which may or may not be implemented for this specific model by calling beforLoad method.

Then it gets current storage connection and when connection and search values are set, then it gets instance of \Magento\Framework\DB\Select class based on desired database column, search value and model object by calling \Magento\Framework\Model\ResourceModel\Db\AbstractDb::_getLoadSelect method and it fetches first found row from this selection.

If record is found, then data is set to our model object.


In the end load method unserializes any serialized fields, calls after load methods from both model and resource model, set original data to model and sets hasDataChanges flag to false.

Saving Entities

\Magento\Framework\Model\ResourceModel\Db\AbstractDb::save method is responsible for persisting model’s data.


First thing here is to check if our model should be deleted instead of updated. In this case, \Magento\Framework\Model\ResourceModel\Db\AbstractDb::delete method is called. After starting a transaction by calling \Magento\Framework\Model\ResourceModel\AbstractResource::beginTransaction method, our method checks if there was any modification to the model’s data.


And if there were no modifications, then \Magento\Framework\Model\ResourceModel\Db\AbstractDb::processNotModifiedSave is called.

In \Magento\Framework\Model\ResourceModel\Db\AbstractDb class’s implementation this method just returns $this and does not perform any work, so if our business logic requires any events to fire in this case then we should override this method in our resource model.

But in most cases where model’s data was actually changed, our method runs model validation, any “before save” logic and checks if our model should be updated or this is a new object and new database record should be created. This can be done by calling \Magento\Framework\Model\ResourceModel\Db\AbstractDb::isObjectNotNew method which checks if our object has id field set (new objects don’t usually have id field set). Depending on the outcome \Magento\Framework\Model\ResourceModel\Db\AbstractDb::updateObject or \Magento\Framework\Model\ResourceModel\Db\AbstractDb::saveNewObject methods are called.

After saving or updating database save method calls any “after save” login and closes the transaction.

Andrey Dubina
Partner With Us Looking for a partner to grow your business? We are the right company to bring your webstore to success. Talk to Andrey

Post a new comment

BelVG Newsletter
Subscribe to our mailing list and get interesting stuff and updates to your email inbox.
Email *