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:
mdb
2003-03-29 07:43:33 +00:00
parent 2e4fe14887
commit dde9e484cc
@@ -1193,7 +1193,7 @@ public class Table {
buildQueryList(buf, comp, i, i+nComponents, mask);
} else {
if (buf.length() != 0) {
buf.append(",");
buf.append(" AND ");
}
buf.append(fd.name);
buf.append("=?");