From 5136011ee70823587a4f18fb79329a299d071ffe Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 14 Sep 2005 14:40:26 +0100 Subject: [PATCH] call mysql_error() on failed connection --- backend.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/backend.php b/backend.php index aaf4e985..b5de559c 100644 --- a/backend.php +++ b/backend.php @@ -12,6 +12,14 @@ $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); + if (!$link) { + if (DB_TYPE == "mysql") { + print mysql_error(); + } + // PG seems to display its own errors just fine by default. + return; + } + if (DB_TYPE == "pgsql") { pg_query("set client_encoding = 'utf-8'"); } -- 2.39.2