PHP code example of chrisandchris / symfony-rowmapper
1. Go to this page and download the library: Download chrisandchris/symfony-rowmapper library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
chrisandchris / symfony-rowmapper example snippets
use ChrisAndChris\Common\RowMapperBundle\Services\Model\ConcreteModel;
class DemoRepo {
/** @var ConcreteModel */
private $model;
public function __construct(ConcreteModel $model){
$this->model = $model;
}
public function getCustomerName($customerId) {
$query = $this->model->getDependencyProvider()->getBuilder()->select()
->field('customer_name')
->table('customer')
->where()
->field('customer_id')->equals()->value($customerId)
->close()
->getSqlQuery();
return $this->model->runWithFirstKeyFirstValue($query);
}
}
use ChrisAndChris\Common\RowMapperBundle\Services\Model\ConcreteModel;
class DemoRepo {
/** @var ConcreteModel */
private $model;
public function __construct(ConcreteModel $model){
$this->model = $model;
}
public function getCustomerName($customerId) {
$query = $this->model->getDependencyProvider()->getBuilder()->select()
->field('customer_name')
->table('customer')
->where()
->field('customer_id')->equals()->value($customerId)
->close()
->getSqlQuery();
return $this->model->runWithFirstKeyFirstValue($query);
}
}
use ChrisAndChris\Common\RowMapperBundle\Entity\Entity;
class CustomerEntity implements Entity {
public $customerId;
public $name;
public $street;
public $zip;
public $city;
}
use ChrisAndChris\Common\RowMapperBundle\Services\Model\ConcreteModel;
class DemoModel {
/** @var ConcreteModel */
private $model;
public function __construct(ConcreteModel $model){
$this->model = $model;
}
public function getCustomer($customerId) {
$query = $this->model->getDependencyProvider()->getBuilder()->select()
->fieldlist([
'customer_id' => 'customerId',
'cus_name' => 'name',
'street',
'zip',
'city'
])
->table('customer')
->where()
->field('customer_id')->equals()->value($customerId)
->close()
->getSqlQuery();
return $this->model->run($query, new SomeEntity());
}
}