up vote 3 down vote favorite
2
share [g+] share [fb]

I have multiple SharePoint lists and want to display data from them on to a gridview control.

Please guide me.

Grace

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

Two options that I can think of:

  1. SPSiteDataQuery
  2. Set up a search scope, metadata, and then query your Scope using Enterprise Search SQL and FullTextSqlQuery
link|improve this answer
feedback

Your question inspired me to develop a web part that demonstrates:

  1. How to query SharePoint data in the many ways offered by the API, and
  2. How to bind it to a grid view.

It can be found on CodePlex here. Some of it is a little rough but it should be enough to show you the basics. It demonstrates the following query types:

  • For loop (if that counts)
  • GetListItems from Lists web service
  • SPQuery for SPList objects
  • SPSiteDataQuery for cross-site list queries
  • CrossListQueryInfo for cached cross-site list queries
  • PortalSiteMapProvider for SharePoint Server publishing sites only

There is code for using the search engine but this isn't wired up to the web part itself yet.

I hope it helps you. If you try it and have problems please use the CodePlex site to get support from me.

link|improve this answer
That's cool Alex. You always do a great job. Keep up the good work! – Pradeep007 Sep 18 '09 at 13:30
+1 for answering the question and providing a working demonstration that truly goes above and beyond! – Sean McDonough Sep 18 '09 at 14:36
@Grace Kim: Feel free to upvote this answer if it helps you! ;-) – Alex Angas Sep 21 '09 at 9:52
The CodePlex site is no longer there. Can you restore it, please? – Winston Fassett Sep 21 '11 at 14:19
@WinstonFassett Now republished to CodePlex. I didn't think anyone was still looking at it! – Alex Angas Sep 21 '11 at 23:50
feedback

With SharePoint 2007 you can use CrossListQueryCache and CrossListQueryInfo. More information here.

link|improve this answer
Worth to note that these classes are available for MOSS installation only. For WSS use suggested SPSiteDataQuery. – Janis Veinbergs Sep 4 '09 at 6:09
That's what the question says - SharePoint 2007 not WSS 3.0. – Alex Angas Sep 4 '09 at 8:14
Dude, I never knew about this class. Am i correct to state that this will use some cached data as a source, i.e. like the sitemap provider? – Colin Sep 4 '09 at 10:51
feedback

Two situations emerge: No.1 If those lists are in the same sites, then SPSiteDataQuery(mentioned above) is a way to go.

No.2 If those lists are located in different, it is little bit knotty to tackle. Maybe to take a look at SharePoint Cross-site Lookup, it can help you.

Another thing I need to mention is if those lists or some of those are nesting in other sitecollection. then I would say, so far I have not found any solution. Maybe Goole can help you.

link|improve this answer
What do you miean in same sites? SiteCollection or Web? SPSiteDataQuery can be used to query ALL lists in SiteCollection (doesn't matter how SUB-Webbed it is), just define List template type. – Janis Veinbergs Sep 4 '09 at 7:41
There is no need to purchase a product. SharePoint provides this functionality via its API. – Alex Angas Sep 4 '09 at 8:18
feedback

Your Answer

 
or
required, but never shown

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