xml.DomDocument.createTextNode
Creates a XML Text xml.DomNode object for this
xml.DomDocument object.
Syntax
createTextNode(
txt STRING )
RETURNS xml.DomNode
- txt defines the data of the XML Text node.
Returns an xml.DomNode object.
Usage
Creates a XML Text xml.DomNode object for this xml.DomDocument
object, where txt is the data of the XML Text node, or NULL.
Returns the XML element xml.DomNode object.
Only the characters #x9, #xA, #xD,
[#x20-#xD7FF], [#xE000-#xFFFD]
and [#x10000-#x10FFFF] are allowed in the content of an XML Text
node. The save() and normalize() methods will fail if characters other than those allowed exist
in a Text node.
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).