setStringField( )

Sets the string value for a field in the AGDBSet object.

Interface

AGDBSet

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

Field object accessors

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

  • name   [in] The name of the field.

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

Returns

None

See also

getStringField( )