システムでは、dt が URL を取得し、それらを getco.... 関数に配置します。そこで SQL ステートメントを呼び出し、それを gridview データ ソースに追加します。ただし、最後のURLのアイテムを取得するため、オーバーライドします。どうすれば解決できますか?
for (int i = 0; i < dt.Rows.Count; i++)
{
row = dt.Rows[i];
GridView1.DataSource = db.getComboxedCombinedRSS( row[0].ToString());
}
GridView1.DataBind();
public DataSet getComboxedCombinedRSS(string url)
{
//SQL string to count the amount of rows within the OSDE_Users table
//string sql = "SELECT [RSS_Title], [RSS_ID], R.Syndication, R.Category FROM RSS AS R INNER JOIN CombinedFeeds AS C ON C.URL = R.URL WHERE C.Name='" +name+" ' ORDER BY RSS_Date desc";
string sql="SELECT top 30 [RSS_Title], [RSS_ID], Syndication, Category FROM RSS where URL= '"+url+"' order by RSS_DATE";
SqlDataAdapter adapt = new SqlDataAdapter(sql, Connect());
DataSet ds = new DataSet();
adapt.Fill(ds);
// result of query filled into datasource
adapt.Dispose();
closeConnection();
return ds;
}