String lastName = this.jdbcTemplate.queryForObject("select last_name from t_actor where id = ?", new Object[]{1212L}, String.class);
我在搜索代码以使用 jdbc 模板从 sql 获取数据时得到了上述行。我想知道什么new Object[]{1212L}
意思?
String lastName = this.jdbcTemplate.queryForObject("select last_name from t_actor where id = ?", new Object[]{1212L}, String.class);
我在搜索代码以使用 jdbc 模板从 sql 获取数据时得到了上述行。我想知道什么new Object[]{1212L}
意思?