1 |
<?php
|
2 |
/*
|
3 |
* $Id: Exception.php 2963 2007-10-21 06:23:59Z Jonathan.Wage $
|
4 |
*
|
5 |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
6 |
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
7 |
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
8 |
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
9 |
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
10 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
11 |
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
12 |
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
13 |
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
14 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
15 |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
16 |
*
|
17 |
* This software consists of voluntary contributions made by many individuals
|
18 |
* and is licensed under the LGPL. For more information, see
|
19 |
* <http://www.phpdoctrine.org>.
|
20 |
*/
|
21 |
Doctrine::autoload('Doctrine_Connection_Exception');
|
22 |
/**
|
23 |
* Doctrine_Connection_Mysql_Exception
|
24 |
*
|
25 |
* @package Doctrine
|
26 |
* @subpackage Connection
|
27 |
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
28 |
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
29 |
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
|
30 |
* @since 1.0
|
31 |
* @version $Revision: 2963 $
|
32 |
* @link www.phpdoctrine.org
|
33 |
*/
|
34 |
class Doctrine_Connection_Mysql_Exception extends Doctrine_Connection_Exception
|
35 |
{
|
36 |
/**
|
37 |
* @var array $errorCodeMap an array that is used for determining portable
|
38 |
* error code from a native database error code
|
39 |
*/
|
40 |
protected static $errorCodeMap = array(
|
41 |
1004 => Doctrine::ERR_CANNOT_CREATE,
|
42 |
1005 => Doctrine::ERR_CANNOT_CREATE,
|
43 |
1006 => Doctrine::ERR_CANNOT_CREATE,
|
44 |
1007 => Doctrine::ERR_ALREADY_EXISTS,
|
45 |
1008 => Doctrine::ERR_CANNOT_DROP,
|
46 |
1022 => Doctrine::ERR_ALREADY_EXISTS,
|
47 |
1044 => Doctrine::ERR_ACCESS_VIOLATION,
|
48 |
1046 => Doctrine::ERR_NODBSELECTED,
|
49 |
1048 => Doctrine::ERR_CONSTRAINT,
|
50 |
1049 => Doctrine::ERR_NOSUCHDB,
|
51 |
1050 => Doctrine::ERR_ALREADY_EXISTS,
|
52 |
1051 => Doctrine::ERR_NOSUCHTABLE,
|
53 |
1054 => Doctrine::ERR_NOSUCHFIELD,
|
54 |
1061 => Doctrine::ERR_ALREADY_EXISTS,
|
55 |
1062 => Doctrine::ERR_ALREADY_EXISTS,
|
56 |
1064 => Doctrine::ERR_SYNTAX,
|
57 |
1091 => Doctrine::ERR_NOT_FOUND,
|
58 |
1100 => Doctrine::ERR_NOT_LOCKED,
|
59 |
1136 => Doctrine::ERR_VALUE_COUNT_ON_ROW,
|
60 |
1142 => Doctrine::ERR_ACCESS_VIOLATION,
|
61 |
1146 => Doctrine::ERR_NOSUCHTABLE,
|
62 |
1216 => Doctrine::ERR_CONSTRAINT,
|
63 |
1217 => Doctrine::ERR_CONSTRAINT,
|
64 |
);
|
65 |
|
66 |
/**
|
67 |
* This method checks if native error code/message can be
|
68 |
* converted into a portable code and then adds this
|
69 |
* portable error code to $portableCode field
|
70 |
*
|
71 |
* @param array $errorInfo error info array
|
72 |
* @since 1.0
|
73 |
* @return boolean whether or not the error info processing was successfull
|
74 |
* (the process is successfull if portable error code was found)
|
75 |
*/
|
76 |
public function processErrorInfo(array $errorInfo)
|
77 |
{
|
78 |
$code = $errorInfo[1];
|
79 |
if (isset(self::$errorCodeMap[$code])) {
|
80 |
$this->portableCode = self::$errorCodeMap[$code];
|
81 |
return true;
|
82 |
}
|
83 |
return false;
|
84 |
}
|
85 |
} |