setULong method

Sets the value for the specified column using a 64-bit integer treated as an unsigned value.

Syntax
setULong( UInt16 columnID, UInt64 value )
Parameters
  • columnID   The ID number of the column. The first column in the table has an ID value of one.

  • value   The new value for the column.

Remarks

The data in the row is not actually changed until you execute an insert or update, and that change is not permanent until it is committed.

Example

The following statement sets the value for the first column:

t.setULong( 1, 9223372036854770000 * 4096 );