alaa / magento2-table-query
Magento 2 Table Query
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:magento2-module
Requires
- php: 7.0.2|7.0.4|~7.0.6|~7.1.0
- magento/framework: 101.0.*
This package is auto-updated.
Last update: 2025-03-09 11:07:05 UTC
README
A simple module works as a wrapper around Magento connection to perform CRUD operations on a db table
Installation
composer require alaa/magento2-table-query
How it works
Using Factory
public function __construct(\Alaa\TableQuery\Model\QueryInterfaceFactory $queryFactory)
{
$this->queryFactory = $queryFactory;
}
Create query object
$query = $this->queryFactory->create(['table' => 'my_table', 'primaryId' => 'primary_id']);
Add new records
$data = [
[
'name' => 'some name'
'age' => 33,
...
],
[...]
]
$query->put($data);
To Retrieve records use methods start with fetch
To retrieve records and delete them:
Retrieve a record based on condition
$query->pull('id = 5')
Retrieve first record and delete it
$query->poll()
Retrieve last record and delete it
$query->pop()
Truncate a table
$query->purge();
Update a record
$query->update(...)
Using the Iterator
$it = $query->iterator();
while ($it->valid()) {
$row = $it->current();
// ... do something with row
$it->next();
}
Contribution
Feel free to raise issues and contribute
License
MIT