values of where-paremeters named "id" are now treated as numbers when

reading from command line client. This is a guess-based trial.
This commit is contained in:
Purodha Blissenbach 2012-09-21 15:18:17 +02:00
parent 7be61f856c
commit e0ee6fe431

View File

@ -213,9 +213,12 @@ public class CLIClientConnectorServlet extends HttpServlet {
while (wkeys.hasNext()) {
String k = (String) wkeys.next();
String kname = hasGetter(eType, k);
String kvalue = ( (k.equals("id"))
? ( AbstractEntity.escapeString(where.get(k)) )
: ( "'" + AbstractEntity.escapeString(where.get(k)) + "'" ) );
if (kname != null) {
rval += (first ? "" : " and ")
+ "(obj." + AbstractEntity.escapeString(kname) + " = '" + AbstractEntity.escapeString(where.get(k)) + "')";
+ "(obj." + AbstractEntity.escapeString(kname) + " = " + kvalue + ")";
first = false;
} else {
throw new ServletException("illegal input (unknown field: " + k + ")");