// Scan WHERE for either IoTSet or IoTRelation
if (strScan.equals("WHERE")) {
// The next token is definitely the WHERE statement
- strScan = scanFile.next();
+ strScan = "";
+ String strWhere = scanFile.next();
+ while (!strWhere.equals(";")) {
+ strScan = strScan + " " + strWhere;
+ strWhere = scanFile.next();
+ }
this.setWhereCondition(strScan);
}
}