Changeset 589 for trunk/Common
- Timestamp:
- Nov 1, 2013, 4:22:59 PM (11 years ago)
- Location:
- trunk/Common
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Database.php
r571 r589 28 28 { 29 29 var $Prefix = ''; 30 var $Functions = array('NOW()', 'CURDATE()', 'CURTIME()', 'UUID()');31 var $Type = 'mysql'; // mysql, pgsql30 var $Functions; 31 var $Type; 32 32 var $PDO; 33 33 var $Error = ''; 34 34 var $insert_id; 35 35 var $LastQuery = ''; 36 var $ShowSQLError = false;37 var $ShowSQLQuery = false;36 var $ShowSQLError; 37 var $ShowSQLQuery; 38 38 39 39 function __construct() 40 { 40 { 41 $this->Type = 'mysql'; // mysql, pgsql 42 $this->ShowSQLError = false; 43 $this->ShowSQLQuery = false; 44 $this->Functions = array('NOW()', 'CURDATE()', 'CURTIME()', 'UUID()'); 41 45 } 42 46 … … 46 50 else if($this->Type == 'pgsql') $ConnectionString = 'pgsql:dbname='.$Database.';host='.$Host; 47 51 else $ConnectionString = ''; 48 $this->PDO = new PDO($ConnectionString, $User, $Password); 52 try { 53 $this->PDO = new PDO($ConnectionString, $User, $Password); 54 55 } catch (Exception $E) 56 { 57 unset($this->PDO); 58 throw new Exception($E->getMessage()); 59 } 60 } 61 62 function Disconnect() 63 { 64 unset($this->PDO); 65 } 66 67 function Connected() 68 { 69 return(isset($this->PDO)); 49 70 } 50 71 -
trunk/Common/Global.php
r582 r589 9 9 if(file_exists($ConfigFileName)) include_once($ConfigFileName); 10 10 include_once(dirname(__FILE__).'/Version.php'); 11 include_once(dirname(__FILE__).'/Update.php');12 11 include_once(dirname(__FILE__).'/VarDumper.php'); 13 12 include_once(dirname(__FILE__).'/Base.php'); -
trunk/Common/System.php
r583 r589 119 119 $this->Config = &$Config; 120 120 121 $this->Database->Connect($this->Config['Database']['Host'], $this->Config['Database']['User'], 122 $this->Config['Database']['Password'], $this->Config['Database']['Database']); 123 $this->Database->Prefix = $this->Config['Database']['Prefix']; 124 $this->Database->charset($this->Config['Database']['Charset']); 125 $this->Database->ShowSQLError = $this->Config['Web']['ShowSQLError']; 126 $this->Database->ShowSQLQuery = $this->Config['Web']['ShowSQLQuery']; 121 try { 122 $this->Database->Connect($this->Config['Database']['Host'], $this->Config['Database']['User'], 123 $this->Config['Database']['Password'], $this->Config['Database']['Database']); 124 $this->Database->Prefix = $this->Config['Database']['Prefix']; 125 $this->Database->charset($this->Config['Database']['Charset']); 126 $this->Database->ShowSQLError = $this->Config['Web']['ShowSQLError']; 127 $this->Database->ShowSQLQuery = $this->Config['Web']['ShowSQLQuery']; 128 } catch (Exception $E) { 129 //$Output .= 'Nelze se připojit k databázi.'; 130 } 127 131 $this->RootURLFolder = $this->Config['Web']['RootFolder']; 128 132 $this->FormManager->Root = $this->Config['Web']['RootFolder']; 129 130 // Check database persistence structure131 $UpdateManager = new UpdateManager();132 $UpdateManager->Database = &$this->Database;133 $UpdateManager->Revision = $DatabaseRevision;134 if(!$UpdateManager->IsInstalled()) die('Systém vyžaduje instalaci databáze.');135 if(!$UpdateManager->IsUpToDate()) die('Systém vyžaduje aktualizaci databáze.');136 133 137 134 $Database = $this->Database; … … 142 139 $this->ModuleManager->RegisterModule(new ModuleSetup($this)); 143 140 $this->ModuleManager->Modules['Setup']->Start(); 144 $this->ModuleManager->LoadModules(); 145 $this->ModuleManager->Modules['Setup']->Start(); 146 $this->ModuleManager->StartAll(); 141 if($this->ModuleManager->Modules['Setup']->CheckState()) 142 { 143 $this->ModuleManager->LoadModules(); 144 $this->ModuleManager->Modules['Setup']->Start(); 145 $this->ModuleManager->StartAll(); 146 } 147 147 if($this->ShowPage) 148 148 { -
trunk/Common/Version.php
r588 r589 1 1 <?php 2 2 3 $Revision = 58 8; // Subversion revision3 $Revision = 589; // Subversion revision 4 4 $DatabaseRevision = 584; // SQL structure revision 5 5 $ReleaseTime = '2013-11-01';
Note:
See TracChangeset
for help on using the changeset viewer.