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

search for in the

odbc_errormsg> <odbc_do
[edit] Last updated: Fri, 17 May 2013

view this page in

odbc_error

(PHP 4 >= 4.0.5, PHP 5)

odbc_errorRestituisce l'ultimo codice di errore

Descrizione

string odbc_error ([ resource $id_connessione ] )

La funzione restituisce un codice di 6 cifre indicante lo stato di ODBC. Se non vi sono errori viene restituita una stringa vuota. Se viene passato il parametro id_connessione, viene restituito l'ultimo stato di questa connessione, altrimenti si ha l'ultimo stato dell'ultima operazione su una qualsiasi connessione.

Questa funzione restituisce valori sensati se l'ultima query ODBC รจ fallita (ad esempio odbc_exec() restituisce FALSE).

Vedere anche: odbc_errormsg() e odbc_exec().



odbc_errormsg> <odbc_do
[edit] Last updated: Fri, 17 May 2013
 
add a note add a note User Contributed Notes odbc_error - [3 notes]
up
0
sunil_limje at indiatimes dot com
9 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!
up
0
Sergio Sartori
10 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
0
aaronbair at hotmail dot com
11 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(...);

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