TAILIEUCHUNG - Improving Paging Performance

[ Team LiB ] Recipe Improving Paging Performance Problem Given an application that allows the user to page through a large result set in a data grid, you need to improve the performance of the paging. Solution Build a custom paging solution that overcomes the performance limitations of the overloaded Fill | Team LiB Recipe Improving Paging Performance Problem Given an application that allows the user to page through a large result set in a data grid you need to improve the performance of the paging. Solution Build a custom paging solution that overcomes the performance limitations of the overloaded Fill method of the DataAdapter. The sample uses a single stored procedure which is shown in Example 9-5 SP0904__PageOrders Used to return 10 records from the Orders table of the Northwind database that correspond the first last next or previous page or a specific page. The procedure has the following arguments @PageCommand An input parameter that accepts one of the following values FIRST LAST PREVIOUS NEXT or GOTO. This specifies the page of results to return to the client. @First Orderld An input parameter that contains the OrderlD of the first record of the client s current page of Orders data. @Last Orderld An input parameter that contains the OrderlD of the last record of the client s current page of Orders data. @PageCount An output parameter that returns the number of pages each of which contains 10 records in the result set. @CurrentPage An output parameter that returns the page number of the result set returned. Example 9-5. Stored procedure SP0904_PageOrders ALTER PROCEDURE SP0904_PageOrders @PageCommand nvarchar 10 @FirstOrderId int null @LastOrderId int null @PageCount int output @CurrentPage int output AS SET NOCOUNT ON select @PageCount CEILING COUNT 10 from Orders -- first page is requested or previous page when the current -- page is already the first if @PageCommand FIRST or @PageCommand PREVIOUS and @CurrentPage 1 begin select top 10 from Orders order by OrderID set @CurrentPage 1 return 0 end -- last page is requested or next page when the current -- page is already the last if @PageCommand LAST or @PageCommand NEXT and @CurrentPage @PageCount begin select a. from select TOP 10 from orders order by OrderID desc a order by OrderID set @CurrentPage .

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.