我是ZF2的初学者 我设法在同一个应用程序上使用多个BDD并且它可以工作。 (我在说这个:configure multiple databases in zf2)。
虽然,我有一个小问题......
在global.php中声明我的自定义工厂是否可以? (在service_manager中)。 或者我需要在每个模块中声明它吗? (在module.php中)
将它声明为global.php实际上有效,但我想知道它是否违反了框架的精神或其他东西......
谢谢你的时间!
Tounu
答案 0 :(得分:7)
将您的连接设置存储在本地配置中:
config/autoload/local.php
如果您有多个具有不同数据库/连接凭据等的环境,例如,您可以使用单独的数据库进行分段设置和实时设置。 然后,您也可以在应用程序中使用多个连接。
没有什么可以阻止你在这里设置多个连接,并在数据库适配器等中根据需要使用它们。
<强> local.php 强>
return array(
/**
* Database Connection One
*/
'db' => array(
'driver' => 'pdo',
'dsn' => 'mysql:dbname=dbnamehere;host=localhost',
'username' => 'root',
'password' => '',
),
/**
* Database Connection Two
*/
'db_two' => array(
'driver' => 'pdo',
'dsn' => 'mysql:dbname=anotherdb;host=localhost',
'username' => 'root',
'password' => '',
),
如果您正在使用版本控制(您应该!),这也允许您从存储库中排除.local配置文件,以避免在其中存储密码等,并允许更轻松地部署到多个环境。
您也可以设置多个适配器以使用不同的连接:
<强> global.php 强>
return array(
/**
* Database Adapter(s)
*/
'service_manager' => array(
'factories' => array(
/**
* Adapter One - this factory will use the default 'db' connection
*/
'Zend\Db\Adapter\Adapter' => 'Zend\Db\Adapter\AdapterServiceFactory',
/**
* Adapter Two - use the second connection
*/
'Application\Db\AdapterTwo' => function($sm) {
$config = $sm->get('Config');
return new Adapter($config['db_two']);
},
),
),
);
答案 1 :(得分:2)
要一次连接多个数据库,请按照下列步骤操作:
第1步:
创建/ module / MyModule /并添加到application.config.ini中以进行访问。
第2步: 使用以下脚本在/ module / MyModule /目录中创建Module.php
<?php
namespace MyModule;
use MyModule\MyAdapterFactory;
use Zend\ModuleManager\Feature\ServiceProviderInterface;
class Module implements ServiceProviderInterface{
public function getAutoloaderConfig()
{
return array(
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__.'/Db/Adapter/',
),
),
);
}
public function getServiceConfig()
{
return array(
'factories' => array(
'adapter1' => new MyAdapterFactory('db_adapter1'),
'adapter2' => new MyAdapterFactory('db_adapter2'),
),
);
}
}
第3步:
使用以下脚本在路径:/ module / MyModule / src / MyModule / Db / Adapter /中创建MyAdapterFactory.php。
<?php
namespace MyModule;
use Zend\ServiceManager\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\Db\Adapter\Adapter;
class MyAdapterFactory implements FactoryInterface
{
protected $configKey;
public function __construct($key)
{
$this->configKey = $key;
}
public function createService(ServiceLocatorInterface $serviceLocator)
{
$config = $serviceLocator->get('Config');
return new Adapter($config[$this->configKey]);
}
}
?>
第4步:
在getServiceConfig()中添加以下脚本。
'YourModule\Model\YourTable' => function($sm) {
$tableGateway = $sm->get('YourTableGateway');
$table = new YourTable($tableGateway);
return $table;
},
'YourTableGateway' => function ($sm) {
$adapter1 = $sm->get('adapter1');
$resultSetPrototype = new ResultSet();
$resultSetPrototype->setArrayObjectPrototype(new YourModel());
return new TableGateway('tbl_name', $adapter1, null, $resultSetPrototype);
},
第5步:
将方法添加到控制器中以访问您的表格,如下所示:
在课程开始时声明:
受保护$ this-&gt; yourTable;
public function getYourTable()
{
if (!$this->yourTable) {
$sm = $this->getServiceLocator();
$this->yourTable = $sm->get('YourModule\Model\YourTable');
}
return $this->yourTable;
}
然后,您可以在控制器中使用此函数(getYourTable())调用您的模型方法进行选择,更新,插入。