示例#1
0
 public queryDetails(string name, string season, List <string> catvalues, nbaDB DB)
 {
     this.db        = DB;
     this.name      = name;
     this.season    = season;
     this.catValues = new List <string>();
     this.catValues.Add("date,");
     foreach (string cat in catvalues)
     {
         this.catValues.Add(cat);
     }
 }
示例#2
0
 public testQuery(nbaDB DB)
 {
     db = DB;
 }