This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hi, This piece of code got me stumped for a whole day and I can't figure out why: public class Project {
public static void main(String[] args) { try { Data x = new Data("c:\\temp\\scjd\\starting\\suncertify\\db\\db.db");
DataInfo[] r = x.criteriaFind("Origin airport='SFO',Destination airport='*'");
String [] values = r[1].getValues(); System.out.println(values[8]); // this prints out 22 if (values[8].equals("22")) System.out.println("22"); else System.out.println("not 22");