Example #1
0
 /**
  * Gets the SQL to create a sequence on this platform.
  *
  * @param string $sequenceName
  * @param integer $start
  * @param integer $allocationSize
  * @return string
  * @throws DoctrineException
  */
 public function getCreateSequenceSql($sequenceName, $start = 1, $allocationSize = 1)
 {
     throw DoctrineException::createSequenceNotSupported($this);
 }