mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 09:13:02 +02:00
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
This commit is contained in:
@@ -33,16 +33,16 @@ define('DB_RANDOM_FUNCTION', 'RANDOM');
|
||||
*
|
||||
*/
|
||||
|
||||
function pwg_db_connect($host, $user, $password, $database, $die=true)
|
||||
function pwg_db_connect($host, $user, $password, $database)
|
||||
{
|
||||
global $conf;
|
||||
|
||||
$db_file = sprintf('sqlite:%s/%s.db', $conf['local_data_dir'], $database);
|
||||
|
||||
try {
|
||||
$link = new PDO($db_file);
|
||||
} catch (Exception $e) {
|
||||
my_error('sqlite::open', $die);
|
||||
$link = new PDO($db_file);
|
||||
if (!$link)
|
||||
{
|
||||
throw new Exception('Connection to server succeed, but it was impossible to connect to database');
|
||||
}
|
||||
|
||||
$link->sqliteCreateFunction('now', 'pwg_now', 0);
|
||||
@@ -56,11 +56,6 @@ function pwg_db_connect($host, $user, $password, $database, $die=true)
|
||||
return $link;
|
||||
}
|
||||
|
||||
function pwg_select_db($database=null, $link=null, $die=null)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
function pwg_db_check_charset()
|
||||
{
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user