silverstripe-framework/core/model/fieldtypes/Double.php
Ingo Schommer 9f4413421d MINOR: use DB doubles only in MySQL, fall back to float (from r98178)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@102623 467b73ca-7a2a-4603-9d3b-597d59a354a9
2010-04-13 02:27:46 +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 MySQLDatabase) {
DB::requireField($this->tableName, $this->name, "double");
} else {
DB::requireField($this->tableName, $this->name, "float");
}
}
function Nice() {
return number_format($this->value, 2);
}
}
?>