Update Method (GrpName)
- Last UpdatedNov 06, 2025
- 1 minute read
The Update() method updates all columns for the specified group name records in the Grp_Name table.
'Declaration
Public Shared Sub Update( _
ByVal sessionId As Integer, _
ByVal grpId As Integer, _
ByVal grpDesc As String, _
ByVal lastEditComment As DBString, _
ByRef lastEditAt As Date _
)
public static void Update(
int sessionId,
int grpId,
string grpDesc,
DBString lastEditComment,
ref DateTime lastEditAt
)
Parameters
- sessionId
Required. Holds the session ID and thus the user who is making this method call.
- grpId
Required. Holds the ID of the user group being updated.
- grpDesc
Required. Holds the new description for the user group.
- lastEditComment
Required. Holds comments that describe why this record is being updated.
- lastEditAt
Required. Holds the date/time when this record was added or last updated, for optimistic concurrency control. The passed value must match the lastEditAt value in the record for the update to succeed.
Output. Holds the date/time value when the record was updated by this called method.