MS SQL Server
  Home arrow MS SQL Server arrow Page 3 - XML and the SQL 2000 Server, Part 2
ASP Free Forums 
.NET  
ASP  
ASP Code  
ASP.NET  
ASP.NET Code  
BrainDump  
C#  
Code Examples  
Database  
Database Code  
IIS  
Microsoft Access  
MS SQL Server  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
ASP Web Hosting  
ASP.NET Web Hosting 
Mobile Linux 
App Generation ROI 
Windows Web Hosting
 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
MS SQL SERVER

XML and the SQL 2000 Server, Part 2
By: Jayaram Krishnaswamy
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 3 stars3 stars3 stars3 stars3 stars / 8
    2005-03-14

    Table of Contents:
  • XML and the SQL 2000 Server, Part 2
  • Mapping Virtual Objects
  • Using Select Queries in URL
  • Considerations When Sending Queries to a URL
  • What are template queries?
  • Stored procedures with templates
  • Display the HTML file

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    XML and the SQL 2000 Server, Part 2 - Using Select Queries in URL


    (Page 3 of 7 )

    In sending SQL commands to a URL, the command is sent in the form of a Query String named sql to the virtual root. For example, to send the following query (a + replacing a white space ):

    Select * 
    from authors
    for xml auto
    
    The string can be constructed as follows:
    ?sql=select+*+from+authors+for+xml+auto&root=root

    Here,
    ?sql= represents a valid SQL statement to be executed by the SQL Server, Select+*+from+authors+xml+auto is the statement
    and &root=root returns the XML as well formed XML by enclosing the SQL Server returned fragment inside <root></root>.

    For example, by sending the following request to the default site XPHTEK and virutal root PubsVirtual:
    http://xphtek/PubsVirtual/?sql=select+*+from+authors+for+xml+auto&root=root
    The following result is displayed on the browser. Only part of the result is shown here.


    Running this query in Netscape 7.2 adds an extra comment: "The XML file does not appear to have any style information attached with it."

    Using Select Query with a Where Clause

    In most business activities there is seldom a necessity to return all rows from the database. Filtering the required data and sending it to the client is the best way.Here is a filtered query and the result:
    http://xphtek/PubsVirtual/?sql=select+*+from+authors+where+au_lname=
    'Bond'+for+xml+auto&root=root

    It is also possible to send the same query as follows to obtain the same result:
    http://xphtek/PubsVirtual/?sql=select%20*%20from%20authors%20where%20au_lname='Bond'%20for%20xml%20auto&root=root

    Stored procedure from a URL

    It is also possible to access a stored procedure from a URL. Consider the following stored procedure on the SQL Server in th pubs database. Since a stored procedure needs to be executed, the object, namely MySimpleXML2, must be configured such that the user accessing the procedure has the permissions.

    Create procedure MySimpleXML2 
    @State char(2)
    as
    Select stor_name, city, zip, state
    from stores
    where state=@State
    order by city 
    for XML auto
    

    The following query can be used to access this stored procedure and the result is shown in the next picture. http://xphtek/PubsVirtual/?sql=MySimpleXML2+'CA'&root=root

    More MS SQL Server Articles
    More By Jayaram Krishnaswamy


     

    MS SQL SERVER ARTICLES

    - Completing the Introduction to Transact-SQL
    - A Brief Introduction to Transact-SQL
    - Lookups and Blocking Bad Data
    - Field Validation Rules for Blocking Bad Data
    - Using Masks to Block Bad Data
    - Blocking Bad Data
    - Using @@ROWCOUNT and TABLE Variables for Dat...
    - How to Use Variables, IF and CASE in Databas...
    - Creating Important Aspects of Notification S...
    - Working wth Variables in Database Interactio...
    - Delving Deeper into Notification Services
    - Notification Services
    - Building a Multi-table Report with SQL 2005 ...
    - A Secure Way of Building Connection Strings
    - Transferring a Database Using the SSIS Desig...





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway
    Stay green...Green IT