silverstripe-framework/core/model/fieldtypes/Double.php
Andreas Piening edf7d4a134 BUGFIX: MSSQL does not support double, using float instead
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90928 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-11-05 21:44:40 +00:00

24 lines
511 B
PHP

<?php
/**
*
* @package sapphire
* @subpackage model
*/
class Double extends DBField {
function requireField() {
// HACK: MSSQL does not support double so we're usinf float instead
// @todo This should go into MSSQLDatabase ideally somehow
if(DB::getConn() instanceof MSSQLDatabase) {
DB::requireField($this->tableName, $this->name, "float");
} else {
DB::requireField($this->tableName, $this->name, "double");
}
}
function Nice() {
return number_format($this->value, 2);
}
}
?>