List of usage examples for javax.resource.cci ResultSet getInt
int getInt(int columnIndex) throws SQLException;
ResultSet
object as an int
in the Java programming language. From source file:org.springframework.samples.jca.dao.PersonDaoImpl.java
/** * @see org.springframework.samples.jca.dao.PersonneDao#getPerson(int) *///from ww w.j a v a2s.c o m public Person getPerson(final int id) throws PersonException { CciInteractionSpec interactionSpec = new CciInteractionSpec(); /*interactionSpec.setUser("sa"); interactionSpec.setPassword("");*/ interactionSpec.setSql("select * from person where person_id=?"); List people = (List) getCciTemplate().execute(interactionSpec, new RecordCreator() { public Record createRecord(RecordFactory recordFactory) throws ResourceException, DataAccessException { IndexedRecord input = recordFactory.createIndexedRecord("input"); input.add(new Integer(id)); return input; } }, new RecordExtractor() { public Object extractData(Record record) throws ResourceException, SQLException, DataAccessException { List people = new ArrayList(); ResultSet rs = (ResultSet) record; while (rs.next()) { Person person = new Person(); person.setId(rs.getInt("person_id")); person.setLastName(rs.getString("person_last_name")); person.setFirstName(rs.getString("person_first_name")); people.add(person); } return people; } }); if (people.size() == 1) { return (Person) people.get(0); } else { throw new PersonException("Can't the person"); } }