Changeset 5236 for trunk/include/dblayer/functions_pdo-sqlite.inc.php
- Timestamp:
- Mar 21, 2010, 11:51:36 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/dblayer/functions_pdo-sqlite.inc.php
r5230 r5236 34 34 */ 35 35 36 function pwg_db_connect($host, $user, $password, $database , $die=true)36 function pwg_db_connect($host, $user, $password, $database) 37 37 { 38 38 global $conf; … … 40 40 $db_file = sprintf('sqlite:%s/%s.db', $conf['local_data_dir'], $database); 41 41 42 try {43 $link = new PDO($db_file);44 } catch (Exception $e){45 my_error('sqlite::open', $die);42 $link = new PDO($db_file); 43 if (!$link) 44 { 45 throw new Exception('Connection to server succeed, but it was impossible to connect to database'); 46 46 } 47 47 … … 55 55 56 56 return $link; 57 }58 59 function pwg_select_db($database=null, $link=null, $die=null)60 {61 return true;62 57 } 63 58
Note: See TracChangeset
for help on using the changeset viewer.