1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/tests/Doctrine/Tests/Mocks/DatabasePlatformMock.php

97 lines
2.1 KiB
PHP
Raw Normal View History

<?php
namespace Doctrine\Tests\Mocks;
2009-01-04 19:15:32 +03:00
class DatabasePlatformMock extends \Doctrine\DBAL\Platforms\AbstractPlatform
{
private $_sequenceNextValSql = "";
private $_prefersIdentityColumns = true;
private $_prefersSequences = false;
2008-09-07 17:48:40 +04:00
/**
* @override
*/
public function getNativeDeclaration(array $field) {}
2008-09-07 17:48:40 +04:00
/**
* @override
*/
public function getPortableDeclaration(array $field) {}
2008-09-07 17:48:40 +04:00
/**
* @override
*/
public function prefersIdentityColumns()
{
2008-09-07 17:48:40 +04:00
return $this->_prefersIdentityColumns;
}
/**
* @override
*/
public function prefersSequences()
{
return $this->_prefersSequences;
}
/** @override */
public function getSequenceNextValSQL($sequenceName)
{
return $this->_sequenceNextValSql;
}
/** @override */
public function getBooleanTypeDeclarationSQL(array $field) {}
/** @override */
public function getIntegerTypeDeclarationSQL(array $field) {}
/** @override */
public function getBigIntTypeDeclarationSQL(array $field) {}
/** @override */
public function getSmallIntTypeDeclarationSQL(array $field) {}
/** @override */
protected function _getCommonIntegerTypeDeclarationSQL(array $columnDef) {}
/** @override */
public function getVarcharTypeDeclarationSQL(array $field) {}
2011-11-12 15:56:44 +04:00
/** @override */
public function getClobTypeDeclarationSQL(array $field) {}
2008-09-07 17:48:40 +04:00
/* MOCK API */
2008-09-07 17:48:40 +04:00
public function setPrefersIdentityColumns($bool)
{
$this->_prefersIdentityColumns = $bool;
}
public function setPrefersSequences($bool)
{
$this->_prefersSequences = $bool;
2008-09-07 17:48:40 +04:00
}
public function setSequenceNextValSql($sql)
{
$this->_sequenceNextValSql = $sql;
}
public function getName()
{
return 'mock';
}
protected function initializeDoctrineTypeMappings()
{
2011-11-12 15:56:44 +04:00
}
/**
* Gets the SQL Snippet used to declare a BLOB column type.
*/
public function getBlobTypeDeclarationSQL(array $field)
{
throw DBALException::notSupported(__METHOD__);
}
}