我正在尝试通过标准PHP学习OO / Zend Framework。我想尖叫并编写一个mysql查询而不是使用TableGateway方法。
我一直在关注教程,并已成功打印出一个表格和一些字段,虽然按照我这样做的方式,我完全迷失了如何将其作为另一个表的连接并打印出一些字段那里。
例如。
表格字段 客户Idx,公司 联系Idx,First_Name
这是我的customersController,我认为这项工作已经完成
namespace Customers\Controller;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;
use Zend\DB\TableGateway\TableGateway;
class CustomersController extends AbstractActionController
{
protected $customersTable;
public function indexAction()
{
return new ViewModel(array('customer' => $this->getCustomersTable()->select()));
//return new ViewModel(array('customers' => $this->fetchJoin()->select()));
}
public function addAction()
{
}
public function editAction()
{
}
public function deleteAction()
{
}
public function getCustomersTable()
{
if (!$this->customersTable) {
$this->customersTable = new TableGateway (
'customer', //table name
$this->getServiceLocator()->get('Zend\DB\Adapter\Adapter')
);
}
return $this->customersTable;
}
}
我在这里走在正确的轨道上吗?
答案 0 :(得分:3)
如果需要连接,请阅读Zend \ Db \ Sql和Zend \ Db \ Select 你可以在这里阅读
http://framework.zend.com/manual/2.0/en/modules/zend.db.sql.html
一个例子是:
在您的模型中(扩展TableGateway或AbstractTableGateway)
在某些功能中你可以有类似的东西(这是来自一个项目):
$sql = new \Zend\Db\Sql\Sql($this->getAdapter());
$select = $sql->select()
->from('event_related_events')
->columns(array())
->join('event_invitees', 'event_invitees.event_id =
event_related_events.related_event_id')
->where(array('event_related_events.event_id' => $eventId));
$selectString = $sql->getSqlStringForSqlObject($select);
$results = $this->getAdapter()->query($selectString, \Zend\Db\Adapter\Adapter::QUERY_MODE_EXECUTE);
然后你可以循环结果并做你需要的。
看看像Doctrine或Propel这样更强大的ORM也可能有所帮助,但对于小型/爱好项目来说可能是一种过度杀伤。
编辑:回答评论中提到的内容
对于直接使用表达式(if,case等),您可以使用类似:
$sql->select()
->from('table')
->columns(array(
'sorter' => new Expression('(IF ( table.`something` >= 'otherthing', 1, 0))'),
'some_count' => new Expression('(count(*))'),
)
)
用SQL术语解释最后一行,它将是: count(*)AS some_count
答案 1 :(得分:0)
所以这是我的控制器,基本上来自Album示例,但现在它将显示来自customer表的客户。
<?php
namespace Customers\Controller;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;
use Customers\Model\Customers;
use Customers\Form\CustomersForm;
class CustomersController extends AbstractActionController
{
protected $customersTable;
public function indexAction()
{
return new ViewModel(array(
'customer' => $this->getCustomersTable()->fetchAll(),
));
}
public function addAction()
{
}
public function editAction()
{
}
public function deleteAction()
{
}
public function getCustomersTable()
{
if (!$this->customersTable) {
$sm = $this->getServiceLocator();
$this->customersTable = $sm->get('Customers\Model\CustomersTable');
}
return $this->customersTable;
}
}
?>
indexAction调用getCustomersTable方法,该方法转到模型(CustomersTable)并在那里执行“查询”。
<?php
namespace Customers\Model;
use Zend\Db\TableGateway\TableGateway;
class CustomersTable
{
protected $tableGateway;
public function __construct(TableGateway $tableGateway)
{
$this->tableGateway = $tableGateway;
}
public function fetchAll()
{
$resultSet = $this->tableGateway->select();
return $resultSet;
}
public function getCustomers($id)
{
}
public function saveCustomers(customers $customers)
{
}
public function deleteCustomers($id)
{
}
}
?>
所以从你的例子中,我应该尝试将其实现到模型中的fetchAll中? 谢谢你的帮助。
$sql = new \Zend\Db\Sql\Sql($this->getAdapter());
$select = $sql->select()
->from('customer')
->columns(array())
->join('contact', 'contact.Idx = customer.Idx')
->where(array('contact.Idx' => $eventId));
$selectString = $sql->getSqlStringForSqlObject($select);
$results = $this->getAdapter()->query($selectString, \Zend\Db\Adapter\Adapter::QUERY_MODE_EXECUTE);