我想在zf2中执行自定义查询。现在我有一个相册控制器和相册表。在AlbumTable中,我要执行联接操作。但是我做不到。请给我一些建议。
以下是我的代码:
namespace WebApp\Table;
use Zend\Db\TableGateway\TableGateway;
use Zend\Db\Sql\Sql;
new Zend\Db\Adapter\Adapter;
class UserTable
{
protected $tableGateway;
public function __construct(TableGateway $tableGateway)
{
$this->tableGateway = $tableGateway;
}
public function searchUser($search)
{
$search = "mehedi";
$adapter = new Adapter();
$sql = new Sql($adapter);
$select = $sql->select();
$select->from('foo');
$select->join('profiles', 'user.user_id = profiles.ownerId', array('name'));
$select->where(array('id' => 2));
$statement = $sql->prepareStatementForSqlObject($select);
$results = $statement->execute();
return $results;
}
}
最佳答案
问题是,当适配器至少需要一个驱动程序时,您正在尝试用无参数实例化适配器:
$adapter = new Adapter(); // Bad
$adapter = new Adapter($driver); // ..
您应该使用ServiceManager来获取适配器,您是从框架应用程序开始的吗?
应该已经为你注入了TableGateway。。
$adapter = $this->getAdapter();
实例化适配器的示例:
$config = $serviceLocator->get('Config');
$adapter = new Adapter($config['db']);
在配置中指定设置时,local.php将执行以下操作:
return array(
/**
* Database Config
*/
'db' => array(
'driver' => 'pdo',
'dsn' => 'mysql:dbname=dbname;host=localhost',
'username' => 'root',
'password' => 'password',
),
关于mysql - 使用zend Framework 2编写自定义查询,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15222197/