aciObjectParamSetString

Call the aciObjectParamSetString function to set the contents of a string parameter.

Syntax

aciError aciObjectParamSetString (
   t_aciObject* pObject,
char* szName,
char* szValue);

Arguments

Arguments Type/Description
pObject t_aciObject*  A pointer to an ACI_DATA object that contains an XML result.
szName char*  A pointer to the parameter name.
szValue char*  A string value.

Discussion

This function adds the szName string parameter with the specified szValue to the pObject.

Returns

An ACI error code.

Example

aciObjectParamSetString(pCommand, ACI_COM_COMMAND, "Query"
aciObjectParamSetString(pConnection, ACI_CONN_ENCRYPTION,
   ACI_CONN_ENCRYPTION_TYPE_TEA);
aciObjectParamSetString(pConnection, ACI_HOSTNAME, "12.3.4.56");