适用于php 7.0的PostgreSQL PDO驱动程序

时间:2018-07-15 12:27:27

标签: php postgresql pdo

我刚刚从5.6版本迁移到php 7.0。现在,我无法从命令行连接到我的PostgreSQL数据库(实际上是yii2命令)。它引发错误:

var dat = _context.TeamMatches
    .Include(tm => tm.Matches)
        .ThenInclude(m => m.MatchMap) // <--
    .ToList();

运行Error: could not find driver 并没有帮助。服务器在Debian 8(jessie)上。

1 个答案:

答案 0 :(得分:0)

删除旧软件包并再次安装新软件包对我有帮助。

$ x="$(dpkg --list | grep php | awk '/^ii/{ print $2}')"
$ sudo apt-get --purge remove $x

感谢cyberciti's article