We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26c29bb commit ce4aa76Copy full SHA for ce4aa76
tests/SqlServerTest.php
@@ -50,7 +50,7 @@ public function checkVersion($db)
50
$version = sqlsrv_server_info($db);
51
$v = explode('.',$version['SQLServerVersion']);
52
if ($v[0]<$major || ($v[0]==$major && $v[1]<$minor) || ($v[0]==$major && $v[1]==$minor && $v[2]<$build)) {
53
- die("Detected MySQL $v[0].$v[1].$v[2], but only $major.$minor.$build and up are supported\n");
+ die("Detected SQL Server $v[0].$v[1].$v[2], but only $major.$minor.$build and up are supported\n");
54
}
55
56
0 commit comments