eric.rovtar-hudsonchapel
-
9/11/2010 5:33:52 PM
RE:CMSRepeater with DataSets
So let me give a complete scenario:
I have 3 custom tables: customtable.podcasts, customtable.series, customtable.speakers. I want to perform the following SQL query:
SELECT customtable.podcasts.id AS id, customtable.podcasts.title AS title, customtable.series.title AS seriesTitle, customtable.speakers.name AS speaker FROM customtable.podcasts, customtable.series, customtable.speakers WHERE customtable.podcasts.seriesID = customtable.series.ID AND customtable.podcasts.speakerID = customtable.speakers.ID;
I want to the attach this to a DataGrid.
How would I best do this?
Thanks!
-Eric
|