vote up 1 vote down star

i am trying to write a data iterator for SQL, it looks like the best approach is to cook up some dynamic sql for this problem.

I want the iterator to support paging, sorting, and filtering of the data, and ideally not iterate over a memory copy but to not even select the data in the first place, perhaps LINQ to SQL or Entity Framework would provide somthing similar?

The funny thing is I already wrote a nice data iterator for SQLCE of all databases it supports a SqlCeResultSet, and an ExecuteResultSet concept making this very easy but this has yet to make it to the full featured server database product. I can imagine why this is so basically as an embedded DB you can lock it for single-user mode, and there is a reduced language support as well, making it easier.

Perhaps i am just too tired or not educated enough to understand an acceptable way of doing this. I think doing a SQL Data Reader may be the ticket but if i am not mistaken you need to keep the connection open as you iterate which doesn't seem to make much sense, the other approach is to just select the page of data return it and offer an iterator over that collection, when you get to the end it pulls down next page, this would work but means i have to cook up a lot of SQL constructs to support sorting, filtering and paging but in the end that may be the solution.

Thanks

flag

80% accept rate
You should give the context. It matters. ASP.NET or WinForms, wtc. It's really not clear what you want your iterator to support. – John Saunders Jul 19 at 20:54
What does context matter, as long as a just want to return a subset of the data from the data tier, if it was winforms or asp.net that is just the way to show the data. To clarify i just want an iterator that works at the sql layer, so i either generate my own t-sql or use a tool to autogenerate it, and that sql needs to support paging, filtering, and sorting of the data. Supporting asynchronous communication and also not requiring to keep an active connection while paging through that data makes sense. – enigmae Jul 20 at 5:04
Paging, sorting, and filtering are all things initiated by a UI - the nature of the UI technology is important here. – John Saunders Jul 20 at 18:30

2 Answers

vote up 0 vote down

I agree with Shiraz - using LINQ to perform server-side paging is the way to go. You can use the exact same logic to page a collection of objects (that implement IEnumerable) as you can to peform server side pagination in SQL.

You can find examples on StackOverflow here.

link|flag
vote up 0 vote down

Here is a link showing how to do paging with Entity Framework:

http://msdn.microsoft.com/en-us/library/bb738702.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.