Reading XML Data Directly from SQL Server
Thông tin tài liệu:
Nội dung trích xuất từ tài liệu:
Reading XML Data Directly from SQL Server[ Team LiB ]Recipe 8.5 Reading XML Data Directly from SQL ServerProblemYou need to read XML data directly from the SQL Server.SolutionUse the FOR XML clause in the stored procedure or SQL statement.The C# code is shown in Example 8-8.Example 8-8. File: ReadXmlDirectForm.cs// Namespaces, variables, and constantsusing System;using System.Configuration;using System.Xml;using System.Data;using System.Data.SqlClient;// . . .// Select statement to read XML directly.String sqlText = SELECT * FROM Orders FOR XML AUTO, XMLDATA;// Create the connection.SqlConnection conn = new SqlConnection( ConfigurationSettings.AppSettings[Sql_ConnectString]);conn.Open( );// Create the command.SqlCommand cmd = new SqlCommand(sqlText, conn);// Read the XML data into a XML reader.XmlReader xr = cmd.ExecuteXmlReader( );// Read the data from the XML reader into the DataSet.DataSet ds = new DataSet( );ds.ReadXml(xr, XmlReadMode.Fragment);xr.Close( );conn.Close( );xmlTextBox.Text = ds.GetXml( );DiscussionSQL Server 2000 introduced support for retrieving data in XML format using the FORXML clause. The .NET SQL Server data provider SqlCommand object has anExecuteXmlReader( ) that allows you to retrieve an XML stream directly from SQLServer, where it returns an XmlReader that contains the results of the SQL query. TheExecuteXmlReader( ) method can only be used with SQL statements that return XMLdata, such as those with a FOR XML clause. The ExecuteXmlReader( ) method can alsobe used to return ntext data containing valid XML.For more information about the FOR XML clause, see Microsoft SQL Server BooksOnline.[ Team LiB ]
Tìm kiếm theo từ khóa liên quan:
công nghệ thông tin kỹ thuật lập trình Oreilly Ado Dot Net Cookbook Ebook-Lib Reading XML Data Directly from SQL ServerGợi ý tài liệu liên quan:
-
52 trang 431 1 0
-
Top 10 mẹo 'đơn giản nhưng hữu ích' trong nhiếp ảnh
11 trang 318 0 0 -
74 trang 302 0 0
-
96 trang 296 0 0
-
Báo cáo thực tập thực tế: Nghiên cứu và xây dựng website bằng Wordpress
24 trang 289 0 0 -
Đồ án tốt nghiệp: Xây dựng ứng dụng di động android quản lý khách hàng cắt tóc
81 trang 283 0 0 -
EBay - Internet và câu chuyện thần kỳ: Phần 1
143 trang 277 0 0 -
Tài liệu dạy học môn Tin học trong chương trình đào tạo trình độ cao đẳng
348 trang 269 1 0 -
Tài liệu hướng dẫn sử dụng thư điện tử tài nguyên và môi trường
72 trang 267 0 0 -
Kỹ thuật lập trình trên Visual Basic 2005
148 trang 266 0 0 -
64 trang 264 0 0
-
Bài giảng An toàn và bảo mật thông tin - Trường đại học Thương Mại
31 trang 255 0 0 -
47 trang 231 0 0
-
Giáo trình Hệ điều hành: Phần 2
53 trang 221 0 0 -
LUẬN VĂN: TÌM HIỂU PHƯƠNG PHÁP HỌC TÍCH CỰC VÀ ỨNG DỤNG CHO BÀI TOÁN LỌC THƯ RÁC
65 trang 216 0 0 -
Đồ án tốt nghiệp: Xây dựng ứng dụng quản lý kho hàng trên nền Web
61 trang 215 0 0 -
83 trang 213 0 0
-
Giáo trình Autocad - Nghề: Quản trị mạng máy tính - Trình độ: Cao đẳng nghề (Phần 2)
52 trang 210 0 0 -
NGÂN HÀNG CÂU HỎI TRẮC NGHIỆM THIẾT KẾ WEB
8 trang 208 0 0 -
BÀI GIẢNG KINH TẾ CHÍNH TRỊ MÁC - LÊNIN - TS. NGUYỄN VĂN LỊCH - 5
23 trang 205 0 0