Class: Doctrine_Connection_Exception

Source Location: /Doctrine/Connection/Exception.php

Class Doctrine_Connection_Exception

Class Overview

Doctrine_Exception

Located in /Doctrine/Connection/Exception.php [line 33]

Exception
   |
   --Doctrine_Exception
      |
      --Doctrine_Connection_Exception
Author(s): Information Tags:
Version:  $Revision: 1345 $
Link:  www.phpdoctrine.com
Since:  1.0
License:  LGPL

Properties

Methods

[ Top ]
Direct descendents
Child Class Description
Doctrine_Connection_Firebird_Exception Doctrine_Connection_Firebird_Exception
Doctrine_Connection_Informix_Exception Doctrine_Connection_Informix_Exception
Doctrine_Connection_Mssql_Exception Doctrine_Connection_Mssql_Exception
Doctrine_Connection_Mysql_Exception Doctrine_Connection_Mysql_Exception
Doctrine_Connection_Oracle_Exception Doctrine_Connection_Oracle_Exception
Doctrine_Connection_Pgsql_Exception Doctrine_Connection_Pgsql_Exception
Doctrine_Connection_Sqlite_Exception Doctrine_Connection_Sqlite_Exception

[ Top ]
Inherited Properties, Constants, and Methods
Inherited Properties Inherited Methods Inherited Constants

Inherited From Doctrine_Exception

Doctrine_Exception::$_errorMessages

Inherited From Doctrine_Exception

Doctrine_Exception::errorMessage()
Return a textual error message for a Doctrine error code

[ Top ]
Property Summary
static array   $errorMessages  
integer   $portableCode  

[ Top ]
Method Summary
string   errorMessage()   Return a textual error message for a Doctrine error code
integer   getPortableCode()   getPortableCode returns portable error code
string   getPortableMessage()   getPortableMessage returns portable error message

[ Top ]
Properties
static array   $errorMessages = array(
Doctrine::ERR => 'unknown error',
Doctrine::ERR_ALREADY_EXISTS => 'already exists',
Doctrine::ERR_CANNOT_CREATE => 'can not create',
Doctrine::ERR_CANNOT_ALTER => 'can not alter',
Doctrine::ERR_CANNOT_REPLACE => 'can not replace',
Doctrine::ERR_CANNOT_DELETE => 'can not delete',
Doctrine::ERR_CANNOT_DROP => 'can not drop',
Doctrine::ERR_CONSTRAINT => 'constraint violation',
Doctrine::ERR_CONSTRAINT_NOT_NULL=> 'null value violates not-null constraint',
Doctrine::ERR_DIVZERO => 'division by zero',
Doctrine::ERR_INVALID => 'invalid',
Doctrine::ERR_INVALID_DATE => 'invalid date or time',
Doctrine::ERR_INVALID_NUMBER => 'invalid number',
Doctrine::ERR_MISMATCH => 'mismatch',
Doctrine::ERR_NODBSELECTED => 'no database selected',
Doctrine::ERR_NOSUCHFIELD => 'no such field',
Doctrine::ERR_NOSUCHTABLE => 'no such table',
Doctrine::ERR_NOT_CAPABLE => 'Doctrine backend not capable',
Doctrine::ERR_NOT_FOUND => 'not found',
Doctrine::ERR_NOT_LOCKED => 'not locked',
Doctrine::ERR_SYNTAX => 'syntax error',
Doctrine::ERR_UNSUPPORTED => 'not supported',
Doctrine::ERR_VALUE_COUNT_ON_ROW => 'value count on row',
Doctrine::ERR_INVALID_DSN => 'invalid DSN',
Doctrine::ERR_CONNECT_FAILED => 'connect failed',
Doctrine::ERR_NEED_MORE_DATA => 'insufficient data supplied',
Doctrine::ERR_EXTENSION_NOT_FOUND=> 'extension not found',
Doctrine::ERR_NOSUCHDB => 'no such database',
Doctrine::ERR_ACCESS_VIOLATION => 'insufficient permissions',
Doctrine::ERR_LOADMODULE => 'error while including on demand module',
Doctrine::ERR_TRUNCATED => 'truncated',
Doctrine::ERR_DEADLOCK => 'deadlock detected',
)
[line 38]
API Tags:
Access:  protected


[ Top ]
integer   $portableCode [line 77]
API Tags:
See:  Doctrine::ERR_* constants
Access:  protected

Information Tags:
Since:  1.0

[ Top ]
Methods
errorMessage  [line 108]

  string errorMessage( [int|array $value = null]  )

Return a textual error message for a Doctrine error code

Parameters:
int|array   $value:  integer error code, null to get the current error code-message map, or an array with a new error code-message map

API Tags:
Return:  error message, or false if the error code was not recognized
Access:  public


Redefinition of:
Doctrine_Exception::errorMessage()
Return a textual error message for a Doctrine error code

[ Top ]
getPortableCode  [line 84]

  integer getPortableCode( )

getPortableCode returns portable error code


API Tags:
Return:  portable error code
Access:  public


[ Top ]
getPortableMessage  [line 94]

  string getPortableMessage( )

getPortableMessage returns portable error message


API Tags:
Return:  portable error message
Access:  public


[ Top ]