1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/manual/docs/Database operations - Sequences.php

9 lines
189 B
PHP
Raw Normal View History

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