1
0
mirror of synced 2025-01-18 14:31:40 +03:00
doctrine2/manual/docs/Database operations - Sequences.php

9 lines
196 B
PHP
Raw Normal View History

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