1
0
mirror of synced 2025-01-18 14:31:40 +03:00
doctrine2/manual/codes/Database operations - Sequences.php
2006-07-23 21:08:06 +00:00

8 lines
175 B
PHP

<?php
$sess = Doctrine_Manager::getInstance()->openSession(new PDO("dsn","username","password"));
// gets the next ID from a sequence
$sess->getNextID($sequence);
?>