1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/manual/codes/Database operations - Sequences.php

8 lines
178 B
PHP
Raw Normal View History

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