diff options
author | nikrou <nikrou@piwigo.org> | 2010-03-21 22:51:36 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-03-21 22:51:36 +0000 |
commit | 4773d7a35052df4683b0445c08feae609764bfb0 (patch) | |
tree | 98a5e8345ad4698acd71b55040fd99e64f388fd2 /include/dblayer/functions_mysql.inc.php | |
parent | 4158d3296072973d094cd295cc18f0035b5d7000 (diff) |
Feature 1255 :
only one function
use exceptions to deal with differents possible errors
git-svn-id: http://piwigo.org/svn/trunk@5236 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/dblayer/functions_mysql.inc.php | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/include/dblayer/functions_mysql.inc.php b/include/dblayer/functions_mysql.inc.php index 6ada73a59..c21c697ae 100644 --- a/include/dblayer/functions_mysql.inc.php +++ b/include/dblayer/functions_mysql.inc.php @@ -32,16 +32,21 @@ define('DB_RANDOM_FUNCTION', 'RAND'); * */ -function pwg_db_connect($host, $user, $password, $database=null, $die=true) +function pwg_db_connect($host, $user, $password, $database) { - $link = @mysql_connect($host, $user, $password) or my_error('mysql_connect', $die); - - return $link; -} - -function pwg_select_db($database, $link, $die=true) -{ - return @mysql_select_db($database, $link) or my_error('mysql_select_db', $die); + $link = @mysql_connect($host, $user, $password); + if (!$link) + { + throw new Exception("Can't connect to server"); + } + if (mysql_select_db($database, $link)) + { + return $link; + } + else + { + throw new Exception('Connection to server succeed, but it was impossible to connect to database'); + } } function pwg_db_check_charset() |