SQLAnywhereException.php 2.34 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 12
use function sasql_error;
use function sasql_errorcode;
use function sasql_sqlstate;
use function sasql_stmt_errno;
use function sasql_stmt_error;
13 14 15

/**
 * SAP Sybase SQL Anywhere driver exception.
16 17
 *
 * @psalm-immutable
18
 */
19
class SQLAnywhereException extends AbstractDriverException
20 21 22 23 24 25 26 27 28
{
    /**
     * 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
     *
29
     * @throws InvalidArgumentException
30 31 32
     */
    public static function fromSQLAnywhereError($conn = null, $stmt = null)
    {
Steve Müller's avatar
Steve Müller committed
33 34
        $state   = $conn ? sasql_sqlstate($conn) : sasql_sqlstate();
        $code    = null;
35 36 37 38 39 40
        $message = null;

        /**
         * Try retrieving the last error from statement resource if given
         */
        if ($stmt) {
Steve Müller's avatar
Steve Müller committed
41
            $code    = sasql_stmt_errno($stmt);
42 43 44 45 46 47 48 49 50 51 52 53
            $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.
         */
        if ($conn && ! $code) {
Steve Müller's avatar
Steve Müller committed
54
            $code    = sasql_errorcode($conn);
55 56 57 58 59 60 61 62
            $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.
         */
63
        if (! $conn || ! $code) {
Steve Müller's avatar
Steve Müller committed
64
            $code    = sasql_errorcode();
65 66 67 68
            $message = sasql_error();
        }

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

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