Good. I have a query that should return all problem numbers. I would like to get every number number to be returned and add it to the list of strings.
ADOQuery1.SQL.Clear;
SQLQuery := 'SELECT issue FROM Comics WHERE SeriesName = '+Quotedstr(SeriesName)+' AND Volume = '+quotedstr(VolumeNumber);
ADOQuery1.SQL.Add(SQLQuery);
ADOQuery1.Active := true;
So, as soon as I realized that the best way to get the results in a list of strings. I tried to use it ADOQuery1.GetFieldList(issuelist,'issue');, but wants tlistnot tstringlistto be sure if it really matters or if I am even doing it right.
source
share