1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/manual/docs/en/_old-docs/Database operations - Sequences.php
2007-10-17 21:16:49 +00:00

9 lines
189 B
PHP

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