setInt32Field( )

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

Interface

AGDBSet

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

Field object accessors

JavaScript synopsis
dbset.setInt32Field(name, value)
C synopsis
void AVsetInt32Field(
  AGDBSet* dbset,
  const PODSString name,
  PODSInt32 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

getInt32Field( )