188189190191192193194195196197198
* Load inline data? */ if (inline != null && inline.equals("true")) { store.inline(); if (where != null) store.where(where); if (param != null) { for (String p : param.split(",")) { String[] parts = p.split(":"); store.param(parts[0],parts[1]);
204205206207208209210211212213214