xml.DomDocument.insertBeforeDocumentNode
Inserts a child DomNode object before another child
xml.DomNode
for this xml.DomDocument
object.
Syntax
insertBeforeDocumentNode(
newNode xml.DomNode,
ref xml.DomNode )
- newNode defines the node to insert.
- ref defines the reference node (the node before which the new node must be inserted).
Usage
Inserts a child xml.DomNode
object before another child DomNode for this
xml.DomDocument
object; newNode is the node to insert,
ref is the reference node (the node before which the new node must be
inserted).
Only Text nodes, Processing Instruction nodes, Document Fragment nodes, one Element node, and one Document Type node allowed.
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).