RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TriggerReadWriteRow.SetInt64 Method (int, long)

Sets long value of given column.

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

SetInt32 has several forms, depending on the input parameters:

  • Sets the long 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 long.
  • Sets the long 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 long.

 

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