1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/manual/docs/Working with objects - Component overview - Connection - Getting connection state.php
2007-04-13 21:49:11 +00:00

20 lines
591 B
PHP

Connection state gives you information about how active connection currently is. You can get the current state
by calling Doctrine_Connection::getState().
<code type="php">
switch($conn->getState()):
case Doctrine_Connection::STATE_ACTIVE:
// connection open and zero open transactions
break;
case Doctrine_Connection::STATE_ACTIVE:
// one open transaction
break;
case Doctrine_Connection::STATE_BUSY:
// multiple open transactions
break;
case Doctrine_Connection::STATE_CLOSED:
// connection closed
break;
endswitch;
</code>