Changeset 1088
- Timestamp:
- 09/12/08 14:31:12 (4 months ago)
- Files:
-
- branches/1.0.x/lib/jelix/CREDITS (modified) (1 diff)
- branches/1.0.x/lib/jelix/plugins/db/pgsql/pgsql.dbconnection.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0.x/lib/jelix/CREDITS
r1066 r1088 130 130 131 131 Laurent Raufaste (aka analogue) 132 - patches on postgresql driver (#123, #671, #672 )132 - patches on postgresql driver (#123, #671, #672, #674) 133 133 134 134 Rahal branches/1.0.x/lib/jelix/plugins/db/pgsql/pgsql.dbconnection.php
r1066 r1088 30 30 } 31 31 parent::__construct($profil); 32 if(isset($this->profil['single_transaction']) && ($this->profil['single_transaction'])){ 33 $this->beginTransaction(); 34 } 35 } 36 37 function __destruct(){ 38 if(isset($this->profil['single_transaction']) && ($this->profil['single_transaction'])){ 39 $this->commit(); 40 } 41 parent::__destruct(); 32 42 } 33 43
