SetGuid method

Sets the value for the specified column using a System.Guid.

Syntax
Visual Basic

Public Sub SetGuid( _
   ByVal columnID As Integer, _
   ByVal val As Guid _
)
C#

public void SetGuid(
   int columnID,
   Guid val
);
Parameters
  • columnID   The ID number of the column. The value must be in the range [0,ULDataReader.FieldCount-1]. The first column in the cursor has an ID value of zero.

  • val   The new value for the column.

Remarks

The data in the row is not actually changed until you execute an ULTable.Insert or Update, and that change is not made permanent until it is committed. Only valid for columns of type ULDbType.UniqueIdentifier or for columns of type ULDbType.Binary with length 16.

See also