Đang chuẩn bị liên kết để tải về tài liệu:
Filtering for Null Values

Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ

[ Team LiB ] Recipe 3.12 Filtering for Null Values Problem You want to filter a DataView for rows that have null values. Solutions Use the IS NULL clause with the RowFilters property of the DataView. The sample code contains two event handlers | Team LiB Recipe 3.12 Filtering for Null Values Problem You want to filter a DataView for rows that have null values. Solutions Use the IS NULL clause with the RowFilters property of the DataView. The sample code contains two event handlers Form.Load Sets up the sample by creating a DataTable containing the Orders table from the Northwind sample database. The default view of the table is bound to the data grid on the form. Filter Button.Click Toggles on and off the filter on the data view that selects only rows with a null ShipRegion. The C code is shown in Example 3-12. Example 3-12. File FilterNullValuesForm.es Namespaces variables and constants using System using System.Configuration using System.Data using System.Data.SqlClient Table name constants private const String ORDERS_TABLE Orders Field name constants private const String SHIPREGION_FIELD ShipRegion . . . private void FilterNullValuesForm_Load object sender System.EventArgs e Create and fill the Orders table. DataTable dt new DataTable ORDERS_TABLE SqlDataAdapter da new SqlDataAdapter SELECT FROM Orders ConfigurationSettings.AppSettings S ql_ConnectString da.Fill dt Bind the default view to the grid. dataGrid.DataSource dt.DefaultView private void filterButton_Click object sender System.EventArgs e String filter SHIPREGION_FIELD IS NULL DataView dv DataView dataGrid.DataSource iffilterButton.Text Apply Filter Apply the filter. dv.RowFilter filter dataGrid.CaptionText Orders table filtered for null ShipRegion field. filterButton.Text Remove Filter else Remove the filter. dv.RowFilter dataGrid.CaptionText Orders table no filter. filterButton.Text Apply Filter Discussion Every DataTable has a default DataView associated with it that can filter a table for records meeting specific criteria. In the solution the RowFilter property of the DefaultView is filtered for rows containing a null ShipRegion field. The result of applying the filter is immediately reflected in any controls bound to the DataView object .

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.