Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
7bf4a507
Commit
7bf4a507
authored
Dec 14, 2006
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unnecessary Db drivers
parent
0d4273c9
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
0 additions
and
815 deletions
+0
-815
Exception.php
lib/Doctrine/Db/Exception.php
+0
-51
Firebird.php
lib/Doctrine/Db/Firebird.php
+0
-34
Exception.php
lib/Doctrine/Db/Firebird/Exception.php
+0
-132
Informix.php
lib/Doctrine/Db/Informix.php
+0
-34
Mssql.php
lib/Doctrine/Db/Mssql.php
+0
-34
Exception.php
lib/Doctrine/Db/Mssql/Exception.php
+0
-72
Mysql.php
lib/Doctrine/Db/Mysql.php
+0
-58
Exception.php
lib/Doctrine/Db/Mysql/Exception.php
+0
-80
Oracle.php
lib/Doctrine/Db/Oracle.php
+0
-34
Exception.php
lib/Doctrine/Db/Oracle/Exception.php
+0
-75
Pgsql.php
lib/Doctrine/Db/Pgsql.php
+0
-34
Exception.php
lib/Doctrine/Db/Pgsql/Exception.php
+0
-102
Exception.php
lib/Doctrine/Db/Sqlite/Exception.php
+0
-75
No files found.
lib/Doctrine/Db/Exception.php
View file @
7bf4a507
...
...
@@ -31,56 +31,5 @@
* @version $Revision$
*/
class
Doctrine_Db_Exception
extends
Doctrine_Exception
{
/**
* @var array $errorMessages an array containing messages for portable error codes
*/
protected
static
$errorMessages
=
array
(
Doctrine_Db
::
ERR
=>
'unknown error'
,
Doctrine_Db
::
ERR_ALREADY_EXISTS
=>
'already exists'
,
Doctrine_Db
::
ERR_CANNOT_CREATE
=>
'can not create'
,
Doctrine_Db
::
ERR_CANNOT_ALTER
=>
'can not alter'
,
Doctrine_Db
::
ERR_CANNOT_REPLACE
=>
'can not replace'
,
Doctrine_Db
::
ERR_CANNOT_DELETE
=>
'can not delete'
,
Doctrine_Db
::
ERR_CANNOT_DROP
=>
'can not drop'
,
Doctrine_Db
::
ERR_CONSTRAINT
=>
'constraint violation'
,
Doctrine_Db
::
ERR_CONSTRAINT_NOT_NULL
=>
'null value violates not-null constraint'
,
Doctrine_Db
::
ERR_DIVZERO
=>
'division by zero'
,
Doctrine_Db
::
ERR_INVALID
=>
'invalid'
,
Doctrine_Db
::
ERR_INVALID_DATE
=>
'invalid date or time'
,
Doctrine_Db
::
ERR_INVALID_NUMBER
=>
'invalid number'
,
Doctrine_Db
::
ERR_MISMATCH
=>
'mismatch'
,
Doctrine_Db
::
ERR_NODBSELECTED
=>
'no database selected'
,
Doctrine_Db
::
ERR_NOSUCHFIELD
=>
'no such field'
,
Doctrine_Db
::
ERR_NOSUCHTABLE
=>
'no such table'
,
Doctrine_Db
::
ERR_NOT_CAPABLE
=>
'MDB2 backend not capable'
,
Doctrine_Db
::
ERR_NOT_FOUND
=>
'not found'
,
Doctrine_Db
::
ERR_NOT_LOCKED
=>
'not locked'
,
Doctrine_Db
::
ERR_SYNTAX
=>
'syntax error'
,
Doctrine_Db
::
ERR_UNSUPPORTED
=>
'not supported'
,
Doctrine_Db
::
ERR_VALUE_COUNT_ON_ROW
=>
'value count on row'
,
Doctrine_Db
::
ERR_INVALID_DSN
=>
'invalid DSN'
,
Doctrine_Db
::
ERR_CONNECT_FAILED
=>
'connect failed'
,
Doctrine_Db
::
ERR_NEED_MORE_DATA
=>
'insufficient data supplied'
,
Doctrine_Db
::
ERR_EXTENSION_NOT_FOUND
=>
'extension not found'
,
Doctrine_Db
::
ERR_NOSUCHDB
=>
'no such database'
,
Doctrine_Db
::
ERR_ACCESS_VIOLATION
=>
'insufficient permissions'
,
Doctrine_Db
::
ERR_LOADMODULE
=>
'error while including on demand module'
,
Doctrine_Db
::
ERR_TRUNCATED
=>
'truncated'
,
Doctrine_Db
::
ERR_DEADLOCK
=>
'deadlock detected'
,
);
/**
* Return a textual error message for a Doctrine_Db error code
*
* @param int|array integer error code,
null to get the current error code-message map,
or an array with a new error code-message map
*
* @return string error message, or false if the error code was
* not recognized
*/
public
function
errorMessage
(
$value
=
null
)
{
return
isset
(
self
::
$errorMessages
[
$value
])
?
self
::
$errorMessages
[
$value
]
:
self
::
$errorMessages
[
Doctrine_Db
::
ERR
];
}
}
lib/Doctrine/Db/Firebird.php
deleted
100644 → 0
View file @
0d4273c9
<?php
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_Db'
);
/**
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/
class
Doctrine_Db_Firebird
extends
Doctrine_Db
{
}
lib/Doctrine/Db/Firebird/Exception.php
deleted
100644 → 0
View file @
0d4273c9
<?php
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_Db_Exception'
);
/**
* Doctrine_Db_Firebird_Exception
*
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lorenzo Alberton <l.alberton@quipo.it> (PEAR MDB2 Interbase driver)
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
*/
class
Doctrine_Db_Firebird_Exception
extends
Doctrine_Db_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
;
}
}
lib/Doctrine/Db/Informix.php
deleted
100644 → 0
View file @
0d4273c9
<?php
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_Db'
);
/**
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/
class
Doctrine_Db_Informix
extends
Doctrine_Db
{
}
lib/Doctrine/Db/Mssql.php
deleted
100644 → 0
View file @
0d4273c9
<?php
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_Db'
);
/**
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/
class
Doctrine_Db_Mssql
extends
Doctrine_Db
{
}
lib/Doctrine/Db/Mssql/Exception.php
deleted
100644 → 0
View file @
0d4273c9
<?php
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_Db_Exception'
);
/**
* Doctrine_Db_Exception
*
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @since 1.0
* @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
*/
class
Doctrine_Db_Mssql_Exception
extends
Doctrine_Db_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
=>
Doctrine_Db
::
ERR_VALUE_COUNT_ON_ROW
,
155
=>
Doctrine_Db
::
ERR_NOSUCHFIELD
,
170
=>
Doctrine_Db
::
ERR_SYNTAX
,
207
=>
Doctrine_Db
::
ERR_NOSUCHFIELD
,
208
=>
Doctrine_Db
::
ERR_NOSUCHTABLE
,
245
=>
Doctrine_Db
::
ERR_INVALID_NUMBER
,
515
=>
Doctrine_Db
::
ERR_CONSTRAINT_NOT_NULL
,
547
=>
Doctrine_Db
::
ERR_CONSTRAINT
,
1913
=>
Doctrine_Db
::
ERR_ALREADY_EXISTS
,
2627
=>
Doctrine_Db
::
ERR_CONSTRAINT
,
2714
=>
Doctrine_Db
::
ERR_ALREADY_EXISTS
,
3701
=>
Doctrine_Db
::
ERR_NOSUCHTABLE
,
8134
=>
Doctrine_Db
::
ERR_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
;
}
}
lib/Doctrine/Db/Mysql.php
deleted
100644 → 0
View file @
0d4273c9
<?php
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_Db'
);
/**
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/
class
Doctrine_Db_Mysql
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
,
);
}
lib/Doctrine/Db/Mysql/Exception.php
deleted
100644 → 0
View file @
0d4273c9
<?php
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_Db_Exception'
);
/**
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/
class
Doctrine_Db_Exception_Mysql
extends
Doctrine_Db_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
;
}
}
lib/Doctrine/Db/Oracle.php
deleted
100644 → 0
View file @
0d4273c9
<?php
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_Db'
);
/**
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/
class
Doctrine_Db_Oracle
extends
Doctrine_Db
{
}
lib/Doctrine/Db/Oracle/Exception.php
deleted
100644 → 0
View file @
0d4273c9
<?php
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_Db_Exception'
);
/**
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/
class
Doctrine_Db_Oracle_Exception
extends
Doctrine_Db_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
;
}
}
lib/Doctrine/Db/Pgsql.php
deleted
100644 → 0
View file @
0d4273c9
<?php
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_Db'
);
/**
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/
class
Doctrine_Db_Pgsql
extends
Doctrine_Db
{
}
lib/Doctrine/Db/Pgsql/Exception.php
deleted
100644 → 0
View file @
0d4273c9
<?php
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_Db_Exception'
);
/**
* Doctrine_Connection_Pgsql_Exception
*
* @package Doctrine
* @category Object Relational Mapping
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.phpdoctrine.com
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Paul Cooper <pgc@ucecom.com> (PEAR MDB2 Pgsql driver)
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @since 1.0
* @version $Revision$
*/
class
Doctrine_Db_Pgsql_Exception
extends
Doctrine_Db_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
;
}
}
lib/Doctrine/Db/Sqlite/Exception.php
deleted
100644 → 0
View file @
0d4273c9
<?php
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_Db_Exception'
);
/**
* Doctrine_Db_Sqlite_Exception
*
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @since 1.0
* @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
*/
class
Doctrine_Db_Sqlite_Exception
extends
Doctrine_Db_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_Db
::
ERR_NOSUCHTABLE
,
'/^no such index:/'
=>
Doctrine_Db
::
ERR_NOT_FOUND
,
'/^(table|index) .* already exists$/'
=>
Doctrine_Db
::
ERR_ALREADY_EXISTS
,
'/PRIMARY KEY must be unique/i'
=>
Doctrine_Db
::
ERR_CONSTRAINT
,
'/is not unique/'
=>
Doctrine_Db
::
ERR_CONSTRAINT
,
'/columns .* are not unique/i'
=>
Doctrine_Db
::
ERR_CONSTRAINT
,
'/uniqueness constraint failed/'
=>
Doctrine_Db
::
ERR_CONSTRAINT
,
'/may not be NULL/'
=>
Doctrine_Db
::
ERR_CONSTRAINT_NOT_NULL
,
'/^no such column:/'
=>
Doctrine_Db
::
ERR_NOSUCHFIELD
,
'/column not present in both tables/i'
=>
Doctrine_Db
::
ERR_NOSUCHFIELD
,
'/^near ".*": syntax error$/'
=>
Doctrine_Db
::
ERR_SYNTAX
,
'/[0-9]+ values for [0-9]+ columns/i'
=>
Doctrine_Db
::
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
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment