RosettaCodeData/Task/Documentation/Objeck/documentation.objeck
2023-07-01 13:44:08 -04: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);
}