setInt16Field( )

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

Interface

AGDBSet

IDL definition
void setInt16Field(
  const String name,
  short value
);
ADO equivalent

Field object accessors

JavaScript synopsis
dbset.setIntField(name, value)
C synopsis
void AVsetInt16Field(
  AGDBSet* dbset,
  const PODSString name,
  PODSInt16 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

getInt16Field( )