downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

odbc_errormsg> <odbc_do
[edit] Last updated: Fri, 10 Feb 2012

view this page in

odbc_error

(PHP 4 >= 4.0.5, PHP 5)

odbc_errorLit le dernier code d'erreur

Description

string odbc_error ([ resource $connection_id ] )

Retourne un état ODBC sur 6 chiffres, ou une chaîne vide s'il n'y avait plus d'erreurs.

Liste de paramètres

connection_id

L'identifiant de connexion ODBC, voir la documentation de la fonction odbc_connect() pour plus de détails.

Valeurs de retour

Si connection_id est spécifié, le dernier état ODBC de cette connexion est retourné. Si connection_id est omis, c'est le dernier état de n'importe quelle connexion qui est retourné.

Cette fonction retourne une valeur significative uniquement si la dernière requête ODBC a échoué (i.e. la fonction odbc_exec() a retourné FALSE).

Voir aussi



odbc_errormsg> <odbc_do
[edit] Last updated: Fri, 10 Feb 2012
 
add a note add a note User Contributed Notes odbc_error
sunil_limje at indiatimes dot com 17-Jul-2003 09:06
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!
Sergio Sartori 03-Apr-2003 02:56
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!
aaronbair at hotmail dot com 08-Mar-2002 01:26
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(...);

 
show source | credits | stats | sitemap | contact | advertising | mirror sites