@Override
public void execute(Connection conn) {
JdbcTemplate jt = JuConnUtils.asJdbcTemplate(conn);
// Reset autoincrement values
List<Map<String, Object>> res = jt.queryForList("select c.TABLE_NAME, c.COLUMN_NAME " +
"from information_schema.columns c " +
"where c.EXTRA='auto_increment'"); //c.TABLE_NAME='Player'"
for (Map<String, Object> row : res) {
String tableName = row.get("TABLE_NAME").toString();