RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TriggerReadWriteRow.SetString Method (int, string)

Sets string value of given column.

Pascal
function SetString(columnName: string; value: string): void;
function SetString(ordinal: Integer; value: string): void;
C++
void SetString(string columnName, string value);
void SetString(int ordinal, string value);

SetString has several forms, depending on the input parameters:

  • Sets the string value of a given column. The parameter columnName is the name of the column containing the value to be changed. The parameter value is the new value as a string.
  • Sets the string value of a given column. The parameter ordinal is the ordinal of the column containing the value to be changed. The parameter value is the new value as a string.

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!