1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/manual/codes/Runtime classes - Doctrine_Session.php

31 lines
696 B
PHP
Raw Normal View History

2006-07-24 01:08:06 +04:00
<?php
$sess = $manager->openSession(Doctrine_DB::getConnection("schema://username:password@hostname/database"));
// get session state:
switch($sess):
case Doctrine_Session::STATE_BUSY:
// multiple open transactions
break;
case Doctrine_Session::STATE_ACTIVE:
// one open transaction
break;
case Doctrine_Session::STATE_CLOSED:
// closed state
break;
case Doctrine_Session::STATE_OPEN:
// open state and zero open transactions
break;
endswitch;
// getting database handler
$dbh = $sess->getDBH();
// flushing the session
$sess->flush();
// print lots of useful info about session:
print $sess;
?>