Consider the following section of code:
DECLARE @TempXML xml;
SET @TempXML = '
<bookstore>
<book>
<title lang="eng">Harry Potter</title>
<price>29.99</price>
</book><book>
<title lang="eng">Learning XML</title>
<price>39.95</price>
</book>
</bookstore>
';
SELECT @TempXML
.
In the above example, no list shows up pressing '.' immediately after @TempXML variable. In the above case it would be convinient if I could see the list of methods associated with the XML data type.
.
In the above example, no list shows up pressing '.' immediately after @TempXML variable. In the above case it would be convinient if I could see the list of methods associated with the XML data type.