2008-09-12 08:51:56 +00:00
|
|
|
<?php
|
|
|
|
|
2009-01-22 19:38:10 +00:00
|
|
|
namespace Doctrine\DBAL\Platforms;
|
2008-09-12 08:51:56 +00:00
|
|
|
|
2009-01-22 19:38:10 +00:00
|
|
|
class Db2Platform extends AbstractPlatform
|
2008-09-12 08:51:56 +00:00
|
|
|
{
|
|
|
|
public function getSequenceNextValSql($sequenceName) {
|
|
|
|
return 'SELECT NEXTVAL FOR ' . $this->quoteIdentifier($sequenceName)
|
|
|
|
. ' FROM SYSIBM.SYSDUMMY1';
|
|
|
|
}
|
2009-02-20 05:46:20 +00:00
|
|
|
}
|