undefined/uninitialized variables
This commit is contained in:
parent
f62897b873
commit
4ad0c5045a
@ -257,7 +257,7 @@ class Doctrine_Export_Frontbase extends Doctrine_Export
|
|||||||
*/
|
*/
|
||||||
public function createSequence($sequenceName, $start = 1, array $options = array())
|
public function createSequence($sequenceName, $start = 1, array $options = array())
|
||||||
{
|
{
|
||||||
$sequenceName = $this->conn->quoteIdentifier($this->conn->getSequenceName($seqName), true);
|
$sequenceName = $this->conn->quoteIdentifier($this->conn->getSequenceName($sequenceName), true);
|
||||||
$seqcolName = $this->conn->quoteIdentifier($this->conn->getAttribute(Doctrine::ATTR_SEQCOL_NAME), true);
|
$seqcolName = $this->conn->quoteIdentifier($this->conn->getAttribute(Doctrine::ATTR_SEQCOL_NAME), true);
|
||||||
|
|
||||||
$query = 'CREATE TABLE ' . $sequenceName . ' (' . $seqcolName . ' INTEGER DEFAULT UNIQUE, PRIMARY KEY(' . $seqcolName . '))';
|
$query = 'CREATE TABLE ' . $sequenceName . ' (' . $seqcolName . ' INTEGER DEFAULT UNIQUE, PRIMARY KEY(' . $seqcolName . '))';
|
||||||
|
Loading…
Reference in New Issue
Block a user