我刚刚从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)上。
答案 0 :(得分:0)
删除旧软件包并再次安装新软件包对我有帮助。
$ x="$(dpkg --list | grep php | awk '/^ii/{ print $2}')"
$ sudo apt-get --purge remove $x