fixed wrong class constants
This commit is contained in:
parent
4bff105385
commit
64923b584a
@ -31,29 +31,29 @@ Doctrine::autoload('Doctrine_Db');
|
||||
*/
|
||||
class Doctrine_Db_Mock extends Doctrine_Db {
|
||||
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,
|
||||
1004 => Doctrine::ERR_CANNOT_CREATE,
|
||||
1005 => Doctrine::ERR_CANNOT_CREATE,
|
||||
1006 => Doctrine::ERR_CANNOT_CREATE,
|
||||
1007 => Doctrine::ERR_ALREADY_EXISTS,
|
||||
1008 => Doctrine::ERR_CANNOT_DROP,
|
||||
1022 => Doctrine::ERR_ALREADY_EXISTS,
|
||||
1044 => Doctrine::ERR_ACCESS_VIOLATION,
|
||||
1046 => Doctrine::ERR_NODBSELECTED,
|
||||
1048 => Doctrine::ERR_CONSTRAINT,
|
||||
1049 => Doctrine::ERR_NOSUCHDB,
|
||||
1050 => Doctrine::ERR_ALREADY_EXISTS,
|
||||
1051 => Doctrine::ERR_NOSUCHTABLE,
|
||||
1054 => Doctrine::ERR_NOSUCHFIELD,
|
||||
1061 => Doctrine::ERR_ALREADY_EXISTS,
|
||||
1062 => Doctrine::ERR_ALREADY_EXISTS,
|
||||
1064 => Doctrine::ERR_SYNTAX,
|
||||
1091 => Doctrine::ERR_NOT_FOUND,
|
||||
1100 => Doctrine::ERR_NOT_LOCKED,
|
||||
1136 => Doctrine::ERR_VALUE_COUNT_ON_ROW,
|
||||
1142 => Doctrine::ERR_ACCESS_VIOLATION,
|
||||
1146 => Doctrine::ERR_NOSUCHTABLE,
|
||||
1216 => Doctrine::ERR_CONSTRAINT,
|
||||
1217 => Doctrine::ERR_CONSTRAINT,
|
||||
);
|
||||
public function connect()
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user