xml.StaxWriter.attribute
Writes a XML attribute to the StaxWriter stream.
Syntax
attribute(
name STRING,
value STRING )
- name defines the local name of the XML attribute. It cannot be NULL.
- value defines the value of the XML attribute. It cannot be NULL.
Usage
Attributes can only be written on the StaxWriter stream if it points to a
START_ELEMENT
or an EMPTY_ELEMENT
, otherwise the operation fails
with an exception. This method can only be called after a startElement
,
startElementNS
, emptyElement
, emptyElementNS
, or
attribute
and attributeNS
.
In case of error, the method throws an exception and sets the
status
variable. Depending on the error, a human-readable description of the
problem is available in the sqlca.sqlerrm
register. See Error handling in GWS calls (status).