IsColumnCurrentTimestamp method

Checks whether the specified column's default is set to the current timestamp (ULDbType.TimeStamp).

Syntax
Visual Basic
Public Function IsColumnCurrentTimestamp( _
   ByVal columnID As Integer _
) As Boolean
C#
public bool IsColumnCurrentTimestamp(
   int columnID
);
Parameters
  • columnID   The ID number of the column. The value must be in the range [0,ULCursorSchema.ColumnCount-1]. The first column in the table has an ID value of zero.

Return value

True if the column defaults to the current timestamp, false if the column does not default to the current timestamp.

See also