无效的数据库名称:未命名的已配置连接

时间:2016-09-30 15:38:07

标签: sql-server symfony propel2

我试图搜索某个地方,但没有找到任何答案。 这是我的问题:

我正在使用Symfony 3和Propel 2开发一个网站。我已经将一些软件包连接到我自己的数据库,它运行良好。

我有一个捆绑应该连接到另一个db(在Microsoft SQL Server上)。问题是,我无法连接到数据库。

这是我的config.yml

propel:
    database:
      connections:
          myconnection:
              adapter:    "pdo_mssql"
              classname:  Propel\Runtime\Adapter\MSSQL\MssqlDebugPDO
              dsn:        "host=MyHOST;dbname=DBname"
              user:       "user"
              password:   "password"
              attributes:

我的所有选项都是正确的,我能够使用DBeaver(数据库管理器)连接到此数据库。

当我尝试

bin/console propel:database:reverse myconnection

我有这个错误

[Propel\Generator\Exception\InvalidArgumentException]                        
Invalid database name: no configured connection named 
`host=MyHOST;dbname=DBname;user=user;password=password`.

那么,有人可以帮助我吗?

如果您需要更多信息,请提出要求,对不起我的英语

AG

0 个答案:

没有答案