Moved connection exception driver functionality to Doctrine_Db_Exception drivers
This commit is contained in:
parent
0999dd6532
commit
22d91d9dee
@ -32,101 +32,4 @@ Doctrine::autoload('Doctrine_Connection_Exception');
|
|||||||
* @author Lorenzo Alberton <l.alberton@quipo.it> (PEAR MDB2 Interbase driver)
|
* @author Lorenzo Alberton <l.alberton@quipo.it> (PEAR MDB2 Interbase driver)
|
||||||
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
|
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
|
||||||
*/
|
*/
|
||||||
class Doctrine_Connection_Firebird_Exception extends Doctrine_Connection_Exception {
|
class Doctrine_Connection_Firebird_Exception extends Doctrine_Connection_Exception { }
|
||||||
/**
|
|
||||||
* @var array $errorCodeMap an array that is used for determining portable
|
|
||||||
* error code from a native database error code
|
|
||||||
*/
|
|
||||||
protected static $errorCodeMap = array(
|
|
||||||
-104 => Doctrine_Db::ERR_SYNTAX,
|
|
||||||
-150 => Doctrine_Db::ERR_ACCESS_VIOLATION,
|
|
||||||
-151 => Doctrine_Db::ERR_ACCESS_VIOLATION,
|
|
||||||
-155 => Doctrine_Db::ERR_NOSUCHTABLE,
|
|
||||||
-157 => Doctrine_Db::ERR_NOSUCHFIELD,
|
|
||||||
-158 => Doctrine_Db::ERR_VALUE_COUNT_ON_ROW,
|
|
||||||
-170 => Doctrine_Db::ERR_MISMATCH,
|
|
||||||
-171 => Doctrine_Db::ERR_MISMATCH,
|
|
||||||
-172 => Doctrine_Db::ERR_INVALID,
|
|
||||||
// -204 => // Covers too many errors, need to use regex on msg
|
|
||||||
-205 => Doctrine_Db::ERR_NOSUCHFIELD,
|
|
||||||
-206 => Doctrine_Db::ERR_NOSUCHFIELD,
|
|
||||||
-208 => Doctrine_Db::ERR_INVALID,
|
|
||||||
-219 => Doctrine_Db::ERR_NOSUCHTABLE,
|
|
||||||
-297 => Doctrine_Db::ERR_CONSTRAINT,
|
|
||||||
-303 => Doctrine_Db::ERR_INVALID,
|
|
||||||
-413 => Doctrine_Db::ERR_INVALID_NUMBER,
|
|
||||||
-530 => Doctrine_Db::ERR_CONSTRAINT,
|
|
||||||
-551 => Doctrine_Db::ERR_ACCESS_VIOLATION,
|
|
||||||
-552 => Doctrine_Db::ERR_ACCESS_VIOLATION,
|
|
||||||
// -607 => // Covers too many errors, need to use regex on msg
|
|
||||||
-625 => Doctrine_Db::ERR_CONSTRAINT_NOT_NULL,
|
|
||||||
-803 => Doctrine_Db::ERR_CONSTRAINT,
|
|
||||||
-804 => Doctrine_Db::ERR_VALUE_COUNT_ON_ROW,
|
|
||||||
-904 => Doctrine_Db::ERR_CONNECT_FAILED,
|
|
||||||
-922 => Doctrine_Db::ERR_NOSUCHDB,
|
|
||||||
-923 => Doctrine_Db::ERR_CONNECT_FAILED,
|
|
||||||
-924 => Doctrine_Db::ERR_CONNECT_FAILED
|
|
||||||
);
|
|
||||||
/**
|
|
||||||
* @var array $errorRegexps an array that is used for determining portable
|
|
||||||
* error code from a native database error message
|
|
||||||
*/
|
|
||||||
protected static $errorRegexps = array(
|
|
||||||
'/generator .* is not defined/'
|
|
||||||
=> Doctrine_Db::ERR_SYNTAX, // for compat. w ibase_errcode()
|
|
||||||
'/table.*(not exist|not found|unknown)/i'
|
|
||||||
=> Doctrine_Db::ERR_NOSUCHTABLE,
|
|
||||||
'/table .* already exists/i'
|
|
||||||
=> Doctrine_Db::ERR_ALREADY_EXISTS,
|
|
||||||
'/unsuccessful metadata update .* failed attempt to store duplicate value/i'
|
|
||||||
=> Doctrine_Db::ERR_ALREADY_EXISTS,
|
|
||||||
'/unsuccessful metadata update .* not found/i'
|
|
||||||
=> Doctrine_Db::ERR_NOT_FOUND,
|
|
||||||
'/validation error for column .* value "\*\*\* null/i'
|
|
||||||
=> Doctrine_Db::ERR_CONSTRAINT_NOT_NULL,
|
|
||||||
'/violation of [\w ]+ constraint/i'
|
|
||||||
=> Doctrine_Db::ERR_CONSTRAINT,
|
|
||||||
'/conversion error from string/i'
|
|
||||||
=> Doctrine_Db::ERR_INVALID_NUMBER,
|
|
||||||
'/no permission for/i'
|
|
||||||
=> Doctrine_Db::ERR_ACCESS_VIOLATION,
|
|
||||||
'/arithmetic exception, numeric overflow, or string truncation/i'
|
|
||||||
=> Doctrine_Db::ERR_INVALID,
|
|
||||||
'/table unknown/i'
|
|
||||||
=> Doctrine::ERR_NOSUCHTABLE,
|
|
||||||
);
|
|
||||||
/**
|
|
||||||
* This method checks if native error code/message can be
|
|
||||||
* converted into a portable code and then adds this
|
|
||||||
* portable error code to errorInfo array and returns the modified array
|
|
||||||
*
|
|
||||||
* the portable error code is added at the end of array
|
|
||||||
*
|
|
||||||
* @param array $errorInfo error info array
|
|
||||||
* @since 1.0
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function processErrorInfo(array $errorInfo) {
|
|
||||||
/**
|
|
||||||
// todo: are the following lines needed?
|
|
||||||
// memo for the interbase php module hackers: we need something similar
|
|
||||||
// to mysql_errno() to retrieve error codes instead of this ugly hack
|
|
||||||
if (preg_match('/^([^0-9\-]+)([0-9\-]+)\s+(.*)$/', $native_msg, $m)) {
|
|
||||||
$native_code = (int)$m[2];
|
|
||||||
} else {
|
|
||||||
$native_code = null;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
foreach(self::$errorRegexps as $regexp => $code) {
|
|
||||||
if (preg_match($regexp, $errorInfo[2])) {
|
|
||||||
$errorInfo[3] = $code;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(isset(self::$errorCodeMap[$errorInfo[1]]))
|
|
||||||
$errorInfo[3] = self::$errorCodeMap[$errorInfo[1]];
|
|
||||||
|
|
||||||
return $errorInfo;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -31,42 +31,4 @@ Doctrine::autoload('Doctrine_Connection_Exception');
|
|||||||
* @category Object Relational Mapping
|
* @category Object Relational Mapping
|
||||||
* @link www.phpdoctrine.com
|
* @link www.phpdoctrine.com
|
||||||
*/
|
*/
|
||||||
class Doctrine_Connection_Mssql_Exception extends Doctrine_Connection_Exception {
|
class Doctrine_Connection_Mssql_Exception extends Doctrine_Connection_Exception { }
|
||||||
/**
|
|
||||||
* @var array $errorCodeMap an array that is used for determining portable
|
|
||||||
* error code from a native database error code
|
|
||||||
*/
|
|
||||||
protected static $errorCodeMap = array(
|
|
||||||
110 => MDB2_ERROR_VALUE_COUNT_ON_ROW,
|
|
||||||
155 => MDB2_ERROR_NOSUCHFIELD,
|
|
||||||
170 => MDB2_ERROR_SYNTAX,
|
|
||||||
207 => MDB2_ERROR_NOSUCHFIELD,
|
|
||||||
208 => MDB2_ERROR_NOSUCHTABLE,
|
|
||||||
245 => MDB2_ERROR_INVALID_NUMBER,
|
|
||||||
515 => MDB2_ERROR_CONSTRAINT_NOT_NULL,
|
|
||||||
547 => MDB2_ERROR_CONSTRAINT,
|
|
||||||
1913 => MDB2_ERROR_ALREADY_EXISTS,
|
|
||||||
2627 => MDB2_ERROR_CONSTRAINT,
|
|
||||||
2714 => MDB2_ERROR_ALREADY_EXISTS,
|
|
||||||
3701 => MDB2_ERROR_NOSUCHTABLE,
|
|
||||||
8134 => MDB2_ERROR_DIVZERO,
|
|
||||||
);
|
|
||||||
/**
|
|
||||||
* This method checks if native error code/message can be
|
|
||||||
* converted into a portable code and then adds this
|
|
||||||
* portable error code to errorInfo array and returns the modified array
|
|
||||||
*
|
|
||||||
* the portable error code is added at the end of array
|
|
||||||
*
|
|
||||||
* @param array $errorInfo error info array
|
|
||||||
* @since 1.0
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function processErrorInfo(array $errorInfo) {
|
|
||||||
$code = $errorInfo[1];
|
|
||||||
if(isset(self::$errorCodeMap[$code]))
|
|
||||||
$errorInfo[3] = self::$errorCodeMap[$code];
|
|
||||||
|
|
||||||
return $errorInfo;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -31,52 +31,4 @@ Doctrine::autoload('Doctrine_Connection_Exception');
|
|||||||
* @category Object Relational Mapping
|
* @category Object Relational Mapping
|
||||||
* @link www.phpdoctrine.com
|
* @link www.phpdoctrine.com
|
||||||
*/
|
*/
|
||||||
class Doctrine_Connection_Mysql_Exception extends Doctrine_Connection_Exception {
|
class Doctrine_Connection_Mysql_Exception extends Doctrine_Connection_Exception { }
|
||||||
/**
|
|
||||||
* @var array $errorCodeMap an array that is used for determining portable
|
|
||||||
* error code from a native database error code
|
|
||||||
*/
|
|
||||||
protected static $errorCodeMap = array(
|
|
||||||
1004 => Doctrine_Db::ERR_CANNOT_CREATE,
|
|
||||||
1005 => Doctrine_Db::ERR_CANNOT_CREATE,
|
|
||||||
1006 => Doctrine_Db::ERR_CANNOT_CREATE,
|
|
||||||
1007 => Doctrine_Db::ERR_ALREADY_EXISTS,
|
|
||||||
1008 => Doctrine_Db::ERR_CANNOT_DROP,
|
|
||||||
1022 => Doctrine_Db::ERR_ALREADY_EXISTS,
|
|
||||||
1044 => Doctrine_Db::ERR_ACCESS_VIOLATION,
|
|
||||||
1046 => Doctrine_Db::ERR_NODBSELECTED,
|
|
||||||
1048 => Doctrine_Db::ERR_CONSTRAINT,
|
|
||||||
1049 => Doctrine_Db::ERR_NOSUCHDB,
|
|
||||||
1050 => Doctrine_Db::ERR_ALREADY_EXISTS,
|
|
||||||
1051 => Doctrine_Db::ERR_NOSUCHTABLE,
|
|
||||||
1054 => Doctrine_Db::ERR_NOSUCHFIELD,
|
|
||||||
1061 => Doctrine_Db::ERR_ALREADY_EXISTS,
|
|
||||||
1062 => Doctrine_Db::ERR_ALREADY_EXISTS,
|
|
||||||
1064 => Doctrine_Db::ERR_SYNTAX,
|
|
||||||
1091 => Doctrine_Db::ERR_NOT_FOUND,
|
|
||||||
1100 => Doctrine_Db::ERR_NOT_LOCKED,
|
|
||||||
1136 => Doctrine_Db::ERR_VALUE_COUNT_ON_ROW,
|
|
||||||
1142 => Doctrine_Db::ERR_ACCESS_VIOLATION,
|
|
||||||
1146 => Doctrine_Db::ERR_NOSUCHTABLE,
|
|
||||||
1216 => Doctrine_Db::ERR_CONSTRAINT,
|
|
||||||
1217 => Doctrine_Db::ERR_CONSTRAINT,
|
|
||||||
);
|
|
||||||
/**
|
|
||||||
* This method checks if native error code/message can be
|
|
||||||
* converted into a portable code and then adds this
|
|
||||||
* portable error code to errorInfo array and returns the modified array
|
|
||||||
*
|
|
||||||
* the portable error code is added at the end of array
|
|
||||||
*
|
|
||||||
* @param array $errorInfo error info array
|
|
||||||
* @since 1.0
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function processErrorInfo(array $errorInfo) {
|
|
||||||
$code = $errorInfo[1];
|
|
||||||
if(isset(self::$errorCodeMap[$code]))
|
|
||||||
$errorInfo[3] = self::$errorCodeMap[$code];
|
|
||||||
|
|
||||||
return $errorInfo;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -31,47 +31,4 @@ Doctrine::autoload('Doctrine_Connection_Exception');
|
|||||||
* @category Object Relational Mapping
|
* @category Object Relational Mapping
|
||||||
* @link www.phpdoctrine.com
|
* @link www.phpdoctrine.com
|
||||||
*/
|
*/
|
||||||
class Doctrine_Connection_Oracle_Exception extends Doctrine_Connection_Exception {
|
class Doctrine_Connection_Oracle_Exception extends Doctrine_Connection_Exception { }
|
||||||
/**
|
|
||||||
* @var array $errorCodeMap an array that is used for determining portable
|
|
||||||
* error code from a native database error code
|
|
||||||
*/
|
|
||||||
protected static $errorCodeMap = array(
|
|
||||||
1 => Doctrine::ERR_CONSTRAINT,
|
|
||||||
900 => Doctrine::ERR_SYNTAX,
|
|
||||||
904 => Doctrine::ERR_NOSUCHFIELD,
|
|
||||||
913 => Doctrine::ERR_VALUE_COUNT_ON_ROW,
|
|
||||||
921 => Doctrine::ERR_SYNTAX,
|
|
||||||
923 => Doctrine::ERR_SYNTAX,
|
|
||||||
942 => Doctrine::ERR_NOSUCHTABLE,
|
|
||||||
955 => Doctrine::ERR_ALREADY_EXISTS,
|
|
||||||
1400 => Doctrine::ERR_CONSTRAINT_NOT_NULL,
|
|
||||||
1401 => Doctrine::ERR_INVALID,
|
|
||||||
1407 => Doctrine::ERR_CONSTRAINT_NOT_NULL,
|
|
||||||
1418 => Doctrine::ERR_NOT_FOUND,
|
|
||||||
1476 => Doctrine::ERR_DIVZERO,
|
|
||||||
1722 => Doctrine::ERR_INVALID_NUMBER,
|
|
||||||
2289 => Doctrine::ERR_NOSUCHTABLE,
|
|
||||||
2291 => Doctrine::ERR_CONSTRAINT,
|
|
||||||
2292 => Doctrine::ERR_CONSTRAINT,
|
|
||||||
2449 => Doctrine::ERR_CONSTRAINT,
|
|
||||||
);
|
|
||||||
/**
|
|
||||||
* This method checks if native error code/message can be
|
|
||||||
* converted into a portable code and then adds this
|
|
||||||
* portable error code to errorInfo array and returns the modified array
|
|
||||||
*
|
|
||||||
* the portable error code is added at the end of array
|
|
||||||
*
|
|
||||||
* @param array $errorInfo error info array
|
|
||||||
* @since 1.0
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function processErrorInfo(array $errorInfo) {
|
|
||||||
$code = $errorInfo[1];
|
|
||||||
if(isset(self::$errorCodeMap[$code]))
|
|
||||||
$errorInfo[3] = self::$errorCodeMap[$code];
|
|
||||||
|
|
||||||
return $errorInfo;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -32,73 +32,4 @@ Doctrine::autoload('Doctrine_Connection_Exception');
|
|||||||
* @since 1.0
|
* @since 1.0
|
||||||
* @version $Revision$
|
* @version $Revision$
|
||||||
*/
|
*/
|
||||||
class Doctrine_Connection_Pgsql_Exception extends Doctrine_Connection_Exception {
|
class Doctrine_Connection_Pgsql_Exception extends Doctrine_Connection_Exception { }
|
||||||
/**
|
|
||||||
* @var array $errorRegexps an array that is used for determining portable
|
|
||||||
* error code from a native database error message
|
|
||||||
*/
|
|
||||||
protected static $errorRegexps = array(
|
|
||||||
'/column .* (of relation .*)?does not exist/i'
|
|
||||||
=> Doctrine::ERR_NOSUCHFIELD,
|
|
||||||
'/(relation|sequence|table).*does not exist|class .* not found/i'
|
|
||||||
=> Doctrine::ERR_NOSUCHTABLE,
|
|
||||||
'/index .* does not exist/'
|
|
||||||
=> Doctrine::ERR_NOT_FOUND,
|
|
||||||
'/relation .* already exists/i'
|
|
||||||
=> Doctrine::ERR_ALREADY_EXISTS,
|
|
||||||
'/(divide|division) by zero$/i'
|
|
||||||
=> Doctrine::ERR_DIVZERO,
|
|
||||||
'/pg_atoi: error in .*: can\'t parse /i'
|
|
||||||
=> Doctrine::ERR_INVALID_NUMBER,
|
|
||||||
'/invalid input syntax for( type)? (integer|numeric)/i'
|
|
||||||
=> Doctrine::ERR_INVALID_NUMBER,
|
|
||||||
'/value .* is out of range for type \w*int/i'
|
|
||||||
=> Doctrine::ERR_INVALID_NUMBER,
|
|
||||||
'/integer out of range/i'
|
|
||||||
=> Doctrine::ERR_INVALID_NUMBER,
|
|
||||||
'/value too long for type character/i'
|
|
||||||
=> Doctrine::ERR_INVALID,
|
|
||||||
'/attribute .* not found|relation .* does not have attribute/i'
|
|
||||||
=> Doctrine::ERR_NOSUCHFIELD,
|
|
||||||
'/column .* specified in USING clause does not exist in (left|right) table/i'
|
|
||||||
=> Doctrine::ERR_NOSUCHFIELD,
|
|
||||||
'/parser: parse error at or near/i'
|
|
||||||
=> Doctrine::ERR_SYNTAX,
|
|
||||||
'/syntax error at/'
|
|
||||||
=> Doctrine::ERR_SYNTAX,
|
|
||||||
'/column reference .* is ambiguous/i'
|
|
||||||
=> Doctrine::ERR_SYNTAX,
|
|
||||||
'/permission denied/'
|
|
||||||
=> Doctrine::ERR_ACCESS_VIOLATION,
|
|
||||||
'/violates not-null constraint/'
|
|
||||||
=> Doctrine::ERR_CONSTRAINT_NOT_NULL,
|
|
||||||
'/violates [\w ]+ constraint/'
|
|
||||||
=> Doctrine::ERR_CONSTRAINT,
|
|
||||||
'/referential integrity violation/'
|
|
||||||
=> Doctrine::ERR_CONSTRAINT,
|
|
||||||
'/more expressions than target columns/i'
|
|
||||||
=> Doctrine::ERR_VALUE_COUNT_ON_ROW,
|
|
||||||
);
|
|
||||||
/**
|
|
||||||
* This method checks if native error code/message can be
|
|
||||||
* converted into a portable code and then adds this
|
|
||||||
* portable error code to errorInfo array and returns the modified array
|
|
||||||
*
|
|
||||||
* the portable error code is added at the end of array
|
|
||||||
*
|
|
||||||
* @param array $errorInfo error info array
|
|
||||||
* @since 1.0
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function processErrorInfo(array $errorInfo) {
|
|
||||||
foreach (self::$errorRegexps as $regexp => $code) {
|
|
||||||
if (preg_match($regexp, $errorInfo[2])) {
|
|
||||||
$errorInfo[3] = $code;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $errorInfo;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
@ -31,45 +31,4 @@ Doctrine::autoload('Doctrine_Connection_Exception');
|
|||||||
* @category Object Relational Mapping
|
* @category Object Relational Mapping
|
||||||
* @link www.phpdoctrine.com
|
* @link www.phpdoctrine.com
|
||||||
*/
|
*/
|
||||||
class Doctrine_Connection_Sqlite_Exception extends Doctrine_Connection_Exception {
|
class Doctrine_Connection_Sqlite_Exception extends Doctrine_Connection_Exception { }
|
||||||
/**
|
|
||||||
* @var array $errorRegexps an array that is used for determining portable
|
|
||||||
* error code from a native database error message
|
|
||||||
*/
|
|
||||||
protected static $errorRegexps = array(
|
|
||||||
'/^no such table:/' => Doctrine::ERR_NOSUCHTABLE,
|
|
||||||
'/^no such index:/' => Doctrine::ERR_NOT_FOUND,
|
|
||||||
'/^(table|index) .* already exists$/' => Doctrine::ERR_ALREADY_EXISTS,
|
|
||||||
'/PRIMARY KEY must be unique/i' => Doctrine::ERR_CONSTRAINT,
|
|
||||||
'/is not unique/' => Doctrine::ERR_CONSTRAINT,
|
|
||||||
'/columns .* are not unique/i' => Doctrine::ERR_CONSTRAINT,
|
|
||||||
'/uniqueness constraint failed/' => Doctrine::ERR_CONSTRAINT,
|
|
||||||
'/may not be NULL/' => Doctrine::ERR_CONSTRAINT_NOT_NULL,
|
|
||||||
'/^no such column:/' => Doctrine::ERR_NOSUCHFIELD,
|
|
||||||
'/column not present in both tables/i' => Doctrine::ERR_NOSUCHFIELD,
|
|
||||||
'/^near ".*": syntax error$/' => Doctrine::ERR_SYNTAX,
|
|
||||||
'/[0-9]+ values for [0-9]+ columns/i' => Doctrine::ERR_VALUE_COUNT_ON_ROW,
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This method checks if native error code/message can be
|
|
||||||
* converted into a portable code and then adds this
|
|
||||||
* portable error code to errorInfo array and returns the modified array
|
|
||||||
*
|
|
||||||
* the portable error code is added at the end of array
|
|
||||||
*
|
|
||||||
* @param array $errorInfo error info array
|
|
||||||
* @since 1.0
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function processErrorInfo(array $errorInfo) {
|
|
||||||
foreach (self::$errorRegexps as $regexp => $code) {
|
|
||||||
if (preg_match($regexp, $errorInfo[2])) {
|
|
||||||
$errorInfo[3] = $code;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $errorInfo;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user