XMLNODE
XMLNODE(elementString [, attributesString [, contentString [, indentBoolean]]])
Description
Create an XML node element. An empty or null attribute string means no attributes are set. An empty or null content string means the node is empty. The content is indented by default if it contains a newline. This method returns a string.
Examples
XMLNODE('a', XMLATTR('href', 'http://h2database.com'), 'H2')
Updated over 4 years ago