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
This commit is contained in:
Andreas Piening 2009-11-05 21:44:40 +00:00
parent e3f4c266e3
commit edf7d4a134

View File

@ -7,7 +7,14 @@
class Double extends DBField {
function requireField() {
DB::requireField($this->tableName, $this->name, "double");
// 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() {