Exemple #1
0
 public void saveInfo(String table, Info info) throws Exception {
   jdbcTemplate.update(
       "INSERT INTO " + table + "(" + info.getKeys() + ") values(" + info.getQuestions() + ")",
       info.getParams());
 }