|
1
|
|
|
<?php |
|
2
|
|
|
/* |
|
3
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
4
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
5
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
6
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|
7
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
8
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
9
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|
10
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
11
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
12
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
13
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
14
|
|
|
* |
|
15
|
|
|
* This software consists of voluntary contributions made by many individuals |
|
16
|
|
|
* and is licensed under the MIT license. For more information, see |
|
17
|
|
|
* <http://www.doctrine-project.org>. |
|
18
|
|
|
*/ |
|
19
|
|
|
|
|
20
|
|
|
namespace Doctrine\DBAL\Driver\SQLSrv; |
|
21
|
|
|
|
|
22
|
|
|
|
|
23
|
|
|
use Doctrine\DBAL\Driver\AbstractDriverException; |
|
24
|
|
|
use const SQLSRV_ERR_ERRORS; |
|
25
|
|
|
use function rtrim; |
|
26
|
|
|
use function sqlsrv_errors; |
|
27
|
|
|
|
|
28
|
|
|
class SQLSrvException extends AbstractDriverException |
|
29
|
|
|
{ |
|
30
|
|
|
/** |
|
31
|
|
|
* Helper method to turn sql server errors into exception. |
|
32
|
|
|
* |
|
33
|
|
|
* @return \Doctrine\DBAL\Driver\SQLSrv\SQLSrvException |
|
34
|
|
|
*/ |
|
35
|
100 |
|
public static function fromSqlSrvErrors() |
|
36
|
|
|
{ |
|
37
|
100 |
|
$errors = sqlsrv_errors(SQLSRV_ERR_ERRORS); |
|
38
|
100 |
|
$message = ""; |
|
39
|
100 |
|
$sqlState = null; |
|
40
|
100 |
|
$errorCode = null; |
|
41
|
|
|
|
|
42
|
100 |
|
foreach ($errors as $error) { |
|
43
|
100 |
|
$message .= "SQLSTATE [".$error['SQLSTATE'].", ".$error['code']."]: ". $error['message']."\n"; |
|
44
|
|
|
|
|
45
|
100 |
|
if (null === $sqlState) { |
|
46
|
100 |
|
$sqlState = $error['SQLSTATE']; |
|
47
|
|
|
} |
|
48
|
|
|
|
|
49
|
100 |
|
if (null === $errorCode) { |
|
50
|
100 |
|
$errorCode = $error['code']; |
|
51
|
|
|
} |
|
52
|
|
|
} |
|
53
|
100 |
|
if ( ! $message) { |
|
54
|
|
|
$message = "SQL Server error occurred but no error message was retrieved from driver."; |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
100 |
|
return new self(rtrim($message), $sqlState, $errorCode); |
|
58
|
|
|
} |
|
59
|
|
|
} |
|
60
|
|
|
|