Mysqli doesn't support the named parameters used by PdoAdapter

This commit is contained in:
Craig Duncan 2020-01-25 13:06:31 +00:00
parent d695b43b98
commit a7864489b0
1 changed files with 1 additions and 0 deletions

View File

@ -395,6 +395,7 @@ trait PdoTrait
} else {
switch ($this->driver = $this->conn->getDriver()->getName()) {
case 'mysqli':
throw new \LogicException(sprintf('The adapter "%s" does not support the mysqli driver, use pdo_mysql instead.', \get_class($this)));
case 'pdo_mysql':
case 'drizzle_pdo_mysql':
$this->driver = 'mysql';