From e1f864f71db0907b966470726f9c3887aabfa44e Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Tue, 16 Dec 2008 17:22:37 +0000 Subject: output errno --- it_dbi.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it_dbi.class b/it_dbi.class index 3878759..df79f0e 100644 --- a/it_dbi.class +++ b/it_dbi.class @@ -359,7 +359,7 @@ function _fatal($text) $text = get_class($this).'::'.$text; if ($this->_link && ($errstr = mysql_error($this->_link))) - $text = "\"$errstr\" in $text"; + $text = "\"$errstr\" in $text [errno " . mysql_errno($this->_link) . "]"; if ($this->_link && ($res = @mysql_fetch_row(mysql_query('select database()', $this->_link)))) # dont create extra errs $text .= ", DB: " . $res[0]; -- cgit v1.2.3