|
|
PHP4完全中文手册
Ora_Error
获得 Oracle 错误信息。
语法: string Ora_Error(int cursor);
返回值: 字符串
函数种类: 数据库功能
返回类似 XXX-NNNNN 格式的错误信息,其中的 XXX 表示错误发生的地方 NNNNN 用来验证错误的信息。在 UNIX 版的 Oracle 上,可以找到类似以下的错误信息详细说明:
oerr ora 00001
00001, 00000, "unique constraint (%s.%s) violated"
// *Cause: An update or insert statement attempted to insert a duplicate key
// For Trusted ORACLE configured in DBMS MAC mode, you may see
// this message if a duplicate entry exists at a different level.
// *Action: Either remove the unique restriction or do not insert the key
整理: sadly (www.phpx.com)
|
|