Query conditions need to be separated by AND not comma.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@1083 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
@@ -1193,7 +1193,7 @@ public class Table {
|
|||||||
buildQueryList(buf, comp, i, i+nComponents, mask);
|
buildQueryList(buf, comp, i, i+nComponents, mask);
|
||||||
} else {
|
} else {
|
||||||
if (buf.length() != 0) {
|
if (buf.length() != 0) {
|
||||||
buf.append(",");
|
buf.append(" AND ");
|
||||||
}
|
}
|
||||||
buf.append(fd.name);
|
buf.append(fd.name);
|
||||||
buf.append("=?");
|
buf.append("=?");
|
||||||
|
|||||||
Reference in New Issue
Block a user