2008-08-01 18:46:14 +00:00
|
|
|
<?php
|
|
|
|
|
2009-01-22 19:38:10 +00:00
|
|
|
namespace Doctrine\DBAL\Platforms;
|
2008-08-01 18:46:14 +00:00
|
|
|
|
2009-01-22 19:38:10 +00:00
|
|
|
class InformixPlatform extends AbstractPlatform
|
2008-08-01 18:46:14 +00:00
|
|
|
{
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
2009-05-27 18:54:40 +00:00
|
|
|
|
2008-08-01 18:46:14 +00:00
|
|
|
/**
|
2009-05-27 18:54:40 +00:00
|
|
|
* Get the platform name for this instance
|
2008-08-01 18:46:14 +00:00
|
|
|
*
|
2009-05-27 18:54:40 +00:00
|
|
|
* @return string
|
2008-08-01 18:46:14 +00:00
|
|
|
*/
|
2009-05-27 18:54:40 +00:00
|
|
|
public function getName()
|
2008-08-01 18:46:14 +00:00
|
|
|
{
|
2009-05-27 18:54:40 +00:00
|
|
|
return 'informix';
|
2008-08-01 18:46:14 +00:00
|
|
|
}
|
2009-02-20 05:46:20 +00:00
|
|
|
}
|