Click or drag to resize

DatabaseAccessorTEditRow Method

Edit a row from a specific table (changes are saved at once).

Namespace: LynceeTec.Eucalyptus
Assembly: LynceeTec.Eucalyptus (in LynceeTec.Eucalyptus.dll) Version: 10.2.3317.0 , built 2025-03-17 14:55:33 UTC
Syntax
public void EditRow(
	long rowId,
	T newRow
)

Parameters

rowId  Int64
The primary key of the row to modify.
newRow  T
The edited row which will replace the one in the database.
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown when newRow is null.
ObjectNotFoundExceptionThrown when there is now row with primary key rowId in the table.
InsufficientPrivilegeExceptionThrown when the connected user hasn't sufficient privileges to write to the specific table.
See Also