RosettaCodeData/Task/Documentation/Objeck/documentation.objeck
2019-09-12 10:33:56 -07:00

9 lines
223 B
Text

#~
Sets the named row value
@param name name
@param value value
@return true of value was set, false otherwise
~#
method : public : Set(name : String, value : String) ~ Bool {
return Set(@table->GetRowId(name), value);
}