BUGFIX Added MSSQLDatabase::set() - it doesn't do anything different to enum at the moment

This commit is contained in:
Sean Harvey 2010-02-07 01:59:13 +00:00
parent 6b82e2b1c2
commit a2c2b3ebc0

View File

@ -887,6 +887,13 @@ class MSSQLDatabase extends SS_Database {
. "'))";
}
/**
* @todo Make this work like {@link MySQLDatabase::set()}
*/
public function set($values) {
return $this->enum($values);
}
/**
* Return a float type-formatted string.
*