10 lines
223 B
Text
10 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);
|
||
|
|
}
|