CakeFest 2024: The Official CakePHP Conference

odbc_error

(PHP 4 >= 4.0.5, PHP 5, PHP 7, PHP 8)

odbc_error直近のエラーコードを得る

説明

odbc_error(?resource $odbc = null): string

6 桁の ODBC ステートを返します。エラーがない場合には、空の文字列を返します。

パラメータ

odbc

ODBC 接続 ID。詳細は odbc_connect() を参照ください。

戻り値

odbc が指定された場合、 その接続の直近の状態が返されます。そうでない場合、 他の接続の直近の状態が返されます。

この関数の戻り値が意味を持つのは、直近の odbc クエリが失敗した場合 (すなわち odbc_exec()false を返した場合) のみです。

変更履歴

バージョン 説明
8.0.0 odbc は、nullable になりました。

参考

add a note

User Contributed Notes 4 notes

up
0
Dan
10 years ago
On persistent connections, a failed T-SQL will allow odbc_error and odbc_errormsg to return the error, but a subsequent successful T-SQL will not clear the error. Is it a bug?
up
0
aaronbair at hotmail dot com
22 years ago
If you use an argument, make sure its the CONNECTION_ID and not the RESULT_ID.

Testing the result can return a null string or sometimes a garbage string.

# -- Example code --
$rs = odbc_exec($dbc, $sql);

#this is wrong but won't error out until
#you demo the page for a client!
if (odbc_error($rs)) die(...);

#these work
if (odbc_error()) die(...);
if (odbc_error($dbc)) die(...);
up
-1
Sergio Sartori
20 years ago
Using IBM DB2 V7.1 and MS SQL Server 7 ODBC database connections.
Print the result of odbc_error() or odbc_errormsg() after each call to an odbc_ function that gives no error and, sooner or later, you'll get garbage instead of a blank string!
up
-9
sunil_limje at indiatimes dot com
20 years ago
I have use this function, its very simple and cute.
with IBM DB2
<?php
// you must set the connection first
if (odbc_error())
{
echo
odbc_errormsg($conn);
}
// if you want to show the perfect error message
// then format it using string functions.
?>
Have a good day!
To Top