SQLAnywhereException.php 2.38 KB
Newer Older
1 2 3 4
<?php

namespace Doctrine\DBAL\Driver\SQLAnywhere;

5
use Doctrine\DBAL\Driver\AbstractDriverException;
6
use InvalidArgumentException;
7 8 9 10 11
use function sasql_error;
use function sasql_errorcode;
use function sasql_sqlstate;
use function sasql_stmt_errno;
use function sasql_stmt_error;
12 13 14

/**
 * SAP Sybase SQL Anywhere driver exception.
15 16
 *
 * @psalm-immutable
17
 */
18
class SQLAnywhereException extends AbstractDriverException
19 20 21 22 23 24 25 26 27
{
    /**
     * Helper method to turn SQL Anywhere error into exception.
     *
     * @param resource|null $conn The SQL Anywhere connection resource to retrieve the last error from.
     * @param resource|null $stmt The SQL Anywhere statement resource to retrieve the last error from.
     *
     * @return SQLAnywhereException
     *
28
     * @throws InvalidArgumentException
29 30 31
     */
    public static function fromSQLAnywhereError($conn = null, $stmt = null)
    {
32 33
        $state   = $conn !== null ? sasql_sqlstate($conn) : sasql_sqlstate();
        $code    = 0;
34 35 36 37 38
        $message = null;

        /**
         * Try retrieving the last error from statement resource if given
         */
39
        if ($stmt !== null) {
Steve Müller's avatar
Steve Müller committed
40
            $code    = sasql_stmt_errno($stmt);
41 42 43 44 45 46 47 48 49 50 51
            $message = sasql_stmt_error($stmt);
        }

        /**
         * Try retrieving the last error from the connection resource
         * if either the statement resource is not given or the statement
         * resource is given but the last error could not be retrieved from it (fallback).
         * Depending on the type of error, it is sometimes necessary to retrieve
         * it from the connection resource even though it occurred during
         * a prepared statement.
         */
52
        if ($conn !== null && $code === 0) {
Steve Müller's avatar
Steve Müller committed
53
            $code    = sasql_errorcode($conn);
54 55 56 57 58 59 60 61
            $message = sasql_error($conn);
        }

        /**
         * Fallback mode if either no connection resource is given
         * or the last error could not be retrieved from the given
         * connection / statement resource.
         */
62
        if ($conn === null || $code === 0) {
Steve Müller's avatar
Steve Müller committed
63
            $code    = sasql_errorcode();
64 65 66 67
            $message = sasql_error();
        }

        if ($message) {
68
            return new self('SQLSTATE [' . $state . '] [' . $code . '] ' . $message, $state, $code);
69 70
        }

71
        return new self('SQL Anywhere error occurred but no error message was retrieved from driver.', $state, $code);
72 73
    }
}