Symfony2 Doctrine连接问题

时间:2015-04-24 09:29:22

标签: php symfony doctrine-orm

我正在学习Symfony2并尝试连接到教义dbal。但我遇到了一个错误,到目前为止我无法解决。

错误讯息:

Catchable fatal error: Argument 1 passed to Doctrine\DBAL\Connection::__construct() must be of the type array, none given, called in /Users/toma/Dev/api/app/cache/dev/appDevDebugProjectContainer.php on line 2313 and defined in /Users/tom/Dev/api/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php on line 192

这是我调用Doctrine / DBAL / Connection的地方:

<?php

namespace API\Test\TestDoctrine\Repository;

use API\TestBundle\TestDoctrine\DatabaseRepository;
use Doctrine\DBAL\Connection;
use Psr\Log\LoggerInterface;


class TestRepo {

    public $doctrine;

    public function __construct(
        DatabaseRepository $databaseRepository,
        Connection $connection,
        LoggerInterface $logger
    ){
        $this->doctrine = $databaseRepository;
    }


    public function test()
    {
        $test = 'Hey';
        return $test;
    }


} 

我已将此文件作为服务创建并将其注入我想要查询我的数据库的存储库中。我试过谷歌这个问题,但不幸的是找不到答案。

的services.xml

<service id="api.dto.template.connection"
         class="Doctrine\DBAL\Connection">
</service>

<service id="api.dto.template.logger"
         class="Psr\Log\LoggerInterface">
</service>

<service id="api.testdoctrine.database_repository"
         class="Api\TestBundle\TestDoctrine\DatabaseRepository">
    <argument type="service" id="japi.dto.template.connection" />
    <argument type="service" id="api.dto.template.logger" />
</service>

<service id="api.testdoctrine.repository.test_repo"
         class="API\TestBundle\TestDoctrine\Repository\TestRepo">
    <argument type="service" id="api.testdoctrine.database_repository" />
</service>

1 个答案:

答案 0 :(得分:2)

我不知道你在那里做什么,但它对我没有任何逻辑。

Doctrine 2在Symfony 2标准版中开箱即用。您需要做的就是在parameters.yml

中添加连接参数
#app/config/parameters.yml
database_driver: pdo_mysql
database_host: 127.0.0.1
database_port: null
database_name: db_name
database_user: db_user
database_password: db_password

在您的控制器中,您可以访问您的实体存储库,如下所示:

$results = $em->getRepository('YourAppBundle:EntityName')->yourRepositoryMethod();

检查以获取更多信息:http://symfony.com/doc/current/book/doctrine.html