RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TriggerReadWriteRow.SetDateTime Method (int, DateTime)

Sets DateTime value of given column.

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

SetDateTime has several forms, depending on the input parameter:

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

 

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