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}
意味?と思いました。