TAILIEUCHUNG - Formatting Column Values When Outputting Data as XML

[ Team LiB ] Recipe Formatting Column Values When Outputting Data as XML Problem You need to save some of the columns in a DataTable as attributes instead of elements when you write out the data as XML. Solution Use the ColumnMapping property. | Team LiB Recipe Formatting Column Values When Outputting Data as XML Problem You need to save some of the columns in a DataTable as attributes instead of elements when you write out the data as XML. Solution Use the ColumnMapping property. The sample code contains two event handlers Sets up the sample by creating a DataSet containing the first two records of the Customers table from Northwind. Refresh Iterates over all of the columns in all of the Customers tables and sets the ColumnMapping property to the specified value. The ColumnMapping for the ContactName column is then set to the specified value. The XML output for the DataSet is displayed. The C code is shown in Example 8-13. Example 8-13. File Namespaces variables and constants using System using using using private DataSet ds . . . private void XmlElementsOrAttributesForm_Load object sender e ds new DataSet CustomersDataSet Get the top two rows from the Customers table. SqlDataAdapter da new SqlDataAdapter SELECT TOP 2 FROM Customers S ql_ConnectString ds Customers private void refreshButton_Click object sender e Set the mapping type for each column in the table. foreach DataTable table in foreach DataColumn column in if else if else if Set the mapping type for the ContactName column. DataColumn dc Customers .Columns ContactName if else if else if columnHiddenRadioButton. Checked else if .

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.