How can we help you today? How can we help you today?

No list shows up pressing DOT after a variable

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.
fahmisarker
0

Comments

1 comment

  • Tilman
    Hi,

    thanks for your suggestion. We will try and incorporate it into version 3 of SQL Prompt.

    Regards,

    Tilman
    Tilman
    0

Add comment

Please sign in to leave a comment.