0

如何在我的表模型中获得默认的数据库适配器?我想用它来创建交易。

在 database.global.php 中:

    return array(
   'service_manager' => array(
        'factories' => array(
            'Zend\Db\Adapter\Adapter' => 'Zend\Db\Adapter\AdapterServiceFactory',
        ),
        'aliases' => array(
            'db' => 'Zend\Db\Adapter\Adapter',
        ),
    ),
    'db' => array(
        'driver'         => 'Pdo',
        'dsn'            => 'mysql:dbname=cww;host=localhost',
        'driver_options' => array(
            PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES \'UTF8\''
        ),
    ),
);

现在我想 $this->adapter在我的albumTable.php

我尝试按如下方式接收它:

use Zend\ServiceManager\ServiceLocatorAwareInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\Db\TableGateway\TableGateway;
use Zend\Db\Sql\Expression;
use Zend\Db\Sql\Select;
use Zend\Db\Sql\Update;
use Zend\Db\Sql\Sql;
use Zend\Db\Sql\Where;
use Ajax\Model\Album;

class AlbumTable implements ServiceLocatorAwareInterface
{
    protected $tableGateway;
    protected $adapter;

    public function __construct(TableGateway $tableGateway)
    {
        $this->tableGateway = $tableGateway;
        $this->adapter  = $this->getServiceLocator()->get('db');    
    }

但我得到了错误:

致命错误:Ajax\Model\AlbumTable 类包含 2 个抽象方法,因此必须声明为抽象方法或在

4

2 回答 2

1

添加以下功能:

public function getServiceLocator() {
    return $this->serviceLocator;
}


public function setServiceLocator(Zend\ServiceManager\ServiceLocatorInterface $serviceLocator) {
    $this->serviceLocator= $serviceLocator;
    return $this;
}

然后你可以这样做:

$this->$dbAdapter = $this->getServiceLocator()->get('Zend\Db\Adapter\Adapter');

但是,如果您阅读入门指南,它会解释如何TableGateways使用服务管理器工厂进行构建,传递 DbAdapter 和其他参数,如下所示:

'RoleTableGateway' => function ($sm) {
    $dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
    $resultSetPrototype = new ResultSet();
    $resultSetPrototype->setArrayObjectPrototype(new Role());
    return new TableGateway('role', $dbAdapter, null, $resultSetPrototype);
},
于 2013-03-14T16:10:52.383 回答
0

使用它来创建数据库适配器:

$adapter = $this->getServiceLocator()->get('db');

您只能在创建别名时使用“db”。您也可以尝试在 \autoload\config\local.php 中的 locals.php 中编写内容。现在,假设我们要在 MySQL 中执行一个数据库查询: 创建一个 sql 语句并放入变量 $sql。现在这样做:

$statement = $adapter->createStatement($sql);
$result = $statement->execute();

希望这可以帮助。

于 2014-10-10T07:54:48.230 回答