ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilDBWrapperFactory.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
17 {
18 
25  public static function getWrapper($a_type)
26  {
27  if ($a_type == "") {
28  if (isset($GLOBALS["DIC"])
29  && $GLOBALS["DIC"]->offsetExists("ilClientIniFile")
30  && $GLOBALS["DIC"]["ilClientIniFile"] instanceof \ilIniFile) {
31  $a_type = $GLOBALS["DIC"]["ilClientIniFile"]->readVariable("db", "type");
32  } else {
34  }
35  }
36 
37  switch ($a_type) {
40  $ilDB = new ilDBPdoPostgreSQL();
41  break;
44  $ilDB = new ilDBPdoMySQLInnoDB();
45  break;
48  $ilDB = new ilDBPdoMySQLMyISAM();
49  break;
51  $ilDB = new ilDBPdoMySQLGalera();
52  break;
53  default:
54  throw new ilDatabaseException("No viable database-type given: " . var_export($a_type, true));
55  }
56 
57  return $ilDB;
58  }
59 }
Class ilDBPdoPostgreSQL.
Class ilDBPdoMySQLMyISAM.
Class ilDatabaseException.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
Definition: PEAR.php:64
global $ilDB
Class ilDBWrapperFactory.
Class ilDBPdoMySQLInnoDB.
INIFile Parser.
Class ilDBPdoMySQLInnoDB.