128129130131132133134135136137138
* @param context the comparative context e.g. (CMP_EQUAL, CMP_SMALLER) */ public void addCompareExpr(StringBuilder buf, long context) { // Assemble expression String arraySep = "+"; DBCmpType op = cmpop; switch (op) { // other than default: case BETWEEN: case NOTBETWEEN: arraySep = " AND ";
126127128129130131132133134135136
* @param context the comparative context e.g. (CMP_EQUAL, CMP_SMALLER) */ public void addCompareExpr(StringBuilder buf, long context) { // Zusammenbauen String arraySep = "+"; DBCmpType op = cmpop; switch (op) { // other than default: case BETWEEN: case NOTBETWEEN: arraySep = " AND ";
121122123124125126127128129130131