Database operations - Sequences.php 178 Bytes
Newer Older
doctrine's avatar
doctrine committed
1
<?php
2
$sess = Doctrine_Manager::getInstance()->openConnection(new PDO("dsn","username","password"));
doctrine's avatar
doctrine committed
3 4 5 6 7

// gets the next ID from a sequence

$sess->getNextID($sequence);
?>