diff --git a/src/Driver/SQLServer/SQLServerDriver.php b/src/Driver/SQLServer/SQLServerDriver.php index 0abb53c0..9cd1b496 100644 --- a/src/Driver/SQLServer/SQLServerDriver.php +++ b/src/Driver/SQLServer/SQLServerDriver.php @@ -43,8 +43,8 @@ public function __construct(array $options) QueryBuilder::defaultBuilder() ); - if ((int)$this->getPDO()->getAttribute(\PDO::ATTR_SERVER_VERSION) < 12) { - throw new DriverException('SQLServer driver supports only 12+ version of SQLServer'); + if ((int)$this->getPDO()->getAttribute(\PDO::ATTR_SERVER_VERSION) < 11) { + throw new DriverException('SQLServer driver supports only 11+ version of SQLServer'); } }