setUInt32Field( )

Sets the value, as an unsigned 32-bit integer, for a field in the AGDBSet object.

Interface

AGDBSet

IDL definition
void setUInt32Field(
  const String name,
  unsigned long value
);
ADO equivalent

Field object accessors

JavaScript synopsis
dbset.setUInt32Field(name, value)
C synopsis
void AVsetUInt32Field(
  AGDBSet* dbset,
  const PODSString name,
  PODSUInt32 value
);
Parameters
  • dbset   The AGDBSet object.

  • name   [in] The name of the field.

  • value   [in] The value to set for the field.

Returns

None

See also

getUInt32Field( )