ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:reference:connection:metaerrormsg

This is an old revision of the document!


metaErrorMsg

See also $ADODB_LANG

Syntax
string metaErrorMsg(
    int $errorNumber
    )

Description

The function metaErrorMsg() converts a portable error number, provided by metaError() into a portable, language specific message

Usage

/*
 * Connection to MySQL database assumed
 */
 
/*
 * Send MySQL error 1004, 'DB_ERROR_CANNOT_CREATE'
 */
 
$m = $db->MetaError(1004);
 
/*
 * value of $m is -15, send it to metaErrorMessage()
 */
$s = $db->metaErrorMessage($m);
 
print $s
 
/*
 * returns 'can not create'
 */
v5/reference/connection/metaerrormsg.1452991879.txt.gz · Last modified: 2017/04/21 11:34 (external edit)