コード例 #1
0
 public void Visit(ADOTabularKeywordCollection aDOTabularKeywordCollection)
 {
     throw new System.NotImplementedException();
 }
コード例 #2
0
 public void Visit(ADOTabularKeywordCollection keywords)
 {
     DataRowCollection drKeywords = _conn.GetSchemaDataSet("DISCOVER_KEYWORDS", null, false).Tables[0].Rows;
     foreach (DataRow dr in drKeywords)
     {
         keywords.Add(dr["Keyword"].ToString());
     }
 }