Data paging in SQL Server CE (Compact Edition)

前端 未结 5 1414
时光取名叫无心
时光取名叫无心 2021-01-11 12:56

I am writing a wpf destop application, and would like to use SQL Server CE as a backend. I\'m trying to come up with a good way to do efficient data paging. In SQL Server

相关标签:
5条回答
  • 2021-01-11 13:28

    In the case that somebody reaches this page looking for the answer ... I came across of this post: Support for Paging Queries in SQL Server CE 4.0

    http://beyondrelational.com/blogs/jacob/archive/2010/07/13/support-for-paging-queries-in-sql-server-ce-4-0.aspx

    Hope this helps

    0 讨论(0)
  • 2021-01-11 13:31

    Honestly, probably the fastest thing to do is use an SqlCeDataReader and call .Read() 10 times. Then when the user moves to the next page, you're already pointing at the 11th result, and can read 10 more. If you need to go backwards, you can either cache your results or switch to an SqlCeResultSet which supports seeking.

    Also, SqlCeDataReader/Result is, from experience, the absolute fastest way to interact with the database on the desktop. It can be literally 100 times faster than using DataSets/DataAdapters.

    0 讨论(0)
  • 2021-01-11 13:33

    I'm also currently working on a WPF application which uses SQL Server CE as the persistence mechanism. We have several (40+) tables and some of them are pretty big (50k records, at least that's big for my standards).

    My advice about data paging directly in SQL CE is this: avoid it if you can! I have used the approach described by Bob King, and at least for me it resulted in Very Ugly code, a real maintenance nightmare.

    Unless you'll need to page over tens of thousands of records, I believe the best approach is to load them all using SqlCeDataReader into a collection of custom classes and then page over the collection in memory. I found this approach to be more responsive than re-executing the SQL query every time, even with caching. What happened is that in my case the queries were fairly complex, and SqlCeDataReader performance was good enough so that the performance hit was almost imperceptible. No need to point that, after the first batch load, every page change happens almost instantaneously because everything is kept in memory.

    The general opinion of my users were that it's ok to wait a little longer for the first results to appear, if that's going to lead to faster paging afterwards. And using LINQ, paging is as easy as calling Skip and Take methods. I have implemented this logic inside a Pager<T> class, making it very DRY and nice.

    0 讨论(0)
  • 2021-01-11 13:37

    There are a few ways, but the most simplistic way would be like the following:

    Assuming

    1. Page Size = 10
    2. Page = 2

    Then

    1. First TOP = PageSize (10)
    2. Second TOP = PageSize * Page (20)
    
    SELECT
     [Page].[ID],
     [Page].[FirstName],
     [Page].[LastName]
    FROM
    (
    SELECT TOP (10)
     [FirstRows].[ID],
     [FirstRows].[FirstName],
     [FirstRows].[LastName]
    FROM
     (
     SELECT TOP (20)
      [TestTable].[ID],
      [TestTable].[FirstName],
      [TestTable].[LastName]
     FROM
      [TestTable]
     ORDER BY
      [TestTable].[ID] ASC
     ) AS [FirstRows]
    ORDER BY 
     [FirstRows].[ID] DESC
    ) AS [Page]
    ORDER BY
      [Page].[ID] ASC
    0 讨论(0)
  • 2021-01-11 13:51

    I did implement custom paging for datagrid using SQL CE. I implemented method of using top in select statement and skipping records using subquery as discussed in above answer. But it works good with small amount of data. As the records grow in thousand the above methodology becomes less helpful and becomes slow in performance.

    I solved poor performance issue by using my own technique. What i did is i store id of first and last record on each page in variables.

    dim firstRecord=dt.rows(0)("id")
    

    and

    dim lastRecord=dt.Rows(dt.rows.count-1)("id")
    

    I initialise these variables after grid is binded for every page.

    If user click next button i fetch top(Pagsize) records from database greater than lastRecord If user click on previous button i fetch top(PageSize) records from database less than firstRecord. Also i order by Id desc in this case. And reorder datatable using dataview to asc before binding to datagrid.

    It made my paging most efficient. Though i had to put some extra effort for insert and delete of records cases. But i was able to handle that.

    0 讨论(0)
提交回复
热议问题