spring的javadoc上讲getObject(String, Object[], Class) will return NULL if the result of the query is NUL
这里有0行和nullresult的区别
0行: select salary from user where 1 = 2
null result: select max(salary) from user where 1 = 2 返回就是null
0行一定抛出IncorrectResultSizeDataAccessException异常
原因如下
ResultSetMetaData rsmd = rs.getMetaData();
int nrOfColumns = rsmd.getColumnCount();这里返回ResultSet的列数
if (nrOfColumns != 1) {
throw new IncorrectResultSizeDataAccessException(
"Expected single column but found " + nrOfColumns, 1, nrOfColumns);
}
0行,多于1行,就抛异常了
最好还是用QueryForList,返回的list的size为0,就是0行
还有oracle 10g的问题,jdbc驱动版本10.1.0.20
getObject返回一个日期类型为java.util.Date
但是这个日期只有年-月-日,没有时-分-秒,因为10g对于DATE类型的列,
getObject().getClass().getName()得到 java.sql.Date
System.out.println(rs.getObject("date_created") + " " + rs.getObject("date_created").getClass());
得到 2005-10-06 class java.sql.Date
要得到全部日期,必须使用oracle.sql.TIMESTAMP
但是使用queryForObject("sql", Timestamp.class)
得到org.springframework.dao.TypeMismatchDataAccessException异常
java.sql.Timestamp] and could not be converted to required type [java.sql.Timestamp] 很是莫名其妙
只好使用java -Doracle.jdbc.V8Compatibility="true" MyApp解决
以下是对JdbcTemplate 常规用法总结:
- jdbcTemplate.execute( "CREATETABLEUSER(user_idinteger,namevarchar(100))" );
2、如果是UPDATE或INSERT,可以用update()方法。
- jdbcTemplate.update( "INSERTINTOUSERVALUES('"
- +user.getId()+ "','"
- +user.getName()+ "','"
- +user.getSex()+ "','"
- +user.getAge()+ "')" );
3、带参数的更新
- jdbcTemplate.update( "UPDATEUSERSETname=?WHEREuser_id=?" , new Object[]{name,id});
- jdbcTemplate.update( "INSERTINTOUSERVALUES(?,?,?,?)" , new Object[]{user.getId(),user.getName(),user.getSex(),user.getAge()});
4、使用JdbcTemplate进行查询时,使用queryForXXX()等方法
- int count=jdbcTemplate.queryForInt( "SELECTCOUNT(*)FROMUSER" );
- Stringname=(String)jdbcTemplate.queryForObject( "SELECTnameFROMUSERWHEREuser_id=?" , new Object[]{id},java.lang.String. class );
- Listrows=jdbcTemplate.queryForList( "SELECT*FROMUSER" );
- Listrows=jdbcTemplate.queryForList( "SELECT*FROMUSER" );
- Iteratorit=rows.iterator();
- while (it.hasNext()){
- MapuserMap=(Map)it.next();
- System.out.print(userMap.get( "user_id" )+ "\t" );
- System.out.print(userMap.get( "name" )+ "\t" );
- System.out.print(userMap.get( "sex" )+ "\t" );
- System.out.println(userMap.get( "age" )+ "\t" );
- }
JdbcTemplate将我们使用的JDBC的流程封装起来,包括了异常的捕捉、SQL的执行、查询结果的转换等等。spring大量使用Template Method模式来封装固定流程的动作,XXXTemplate等类别都是基于这种方式的实现。
除了大量使用Template Method来封装一些底层的操作细节,spring也大量使用callback方式类回调相关类别的方法以提供JDBC相关类别的功能,使传统的JDBC的使用者也能清楚了解spring所提供的相关封装类别方法的使用。
JDBC的PreparedStatement
- final Stringid=user.getId();
- final Stringname=user.getName();
- final Stringsex=user.getSex()+ "" ;
- final int age=user.getAge();
- jdbcTemplate.update( "INSERTINTOUSERVALUES(?,?,?,?)" ,
- new PreparedStatementSetter(){
- public void setValues(PreparedStatementps) throws SQLException{
- ps.setString( 1 ,id);
- ps.setString( 2 ,name);
- ps.setString( 3 ,sex);
- ps.setInt( 4 ,age);
- }
- });
- final Useruser= new User();
- jdbcTemplate.query( "SELECT*FROMUSERWHEREuser_id=?" ,
- new Object[]{id},
- new RowCallbackHandler(){
- public void processRow(ResultSetrs) throws SQLException{
- user.setId(rs.getString( "user_id" ));
- user.setName(rs.getString( "name" ));
- user.setSex(rs.getString( "sex" ).charAt( 0 ));
- user.setAge(rs.getInt( "age" ));
- }
- });
- class UserRowMapper implements RowMapper{
- public ObjectmapRow(ResultSetrs, int index) throws SQLException{
- Useruser= new User();
- user.setId(rs.getString( "user_id" ));
- user.setName(rs.getString( "name" ));
- user.setSex(rs.getString( "sex" ).charAt( 0 ));
- user.setAge(rs.getInt( "age" ));
- return user;
- }
- }
- public ListfindAllByRowMapperResultReader(){
- Stringsql= "SELECT*FROMUSER" ;
- return jdbcTemplate.query(sql, new RowMapperResultReader( new UserRowMapper()));
- }
在getUser(id)里面使用UserRowMapper
- public UsergetUser( final Stringid) throws DataAccessException{
- Stringsql= "SELECT*FROMUSERWHEREuser_id=?" ;
- final Object[]params= new Object[]{id};
- Listlist=jdbcTemplate.query(sql,params, new RowMapperResultReader( new UserRowMapper()));
- return (User)list.get( 0 );
- }
网上收集
org.springframework.jdbc.core.PreparedStatementCreator 返回预编译SQL 不能于Object[]一起用
- public PreparedStatementcreatePreparedStatement(Connectioncon) throws SQLException{
- return con.prepareStatement(sql);
- }
1.增删改
org.springframework.jdbc.core.JdbcTemplate 类(必须指定数据源dataSource)
- template.update( "insertintoweb_personvalues(?,?,?)" ,Object[]);
或
- template.update( "insertintoweb_personvalues(?,?,?)" , new PreparedStatementSetter(){匿名内部类只能访问外部最终局部变量
- public void setValues(PreparedStatementps) throws SQLException{
- ps.setInt(index++, 3 );
- });
org.springframework.jdbc.core.PreparedStatementSetter 接口 处理预编译SQL
- public void setValues(PreparedStatementps) throws SQLException{
- ps.setInt(index++, 3 );
- }
2.查询JdbcTemplate.query(String,[Object[]/PreparedStatementSetter],RowMapper/RowCallbackHandler)
org.springframework.jdbc.core.RowMapper 记录映射接口 处理结果集
- public ObjectmapRow(ResultSetrs, int arg1) throws SQLException{ int 表当前行数
- person.setId(rs.getInt( "id" ));
- }
- Listtemplate.query( "select*fromweb_personwhereid=?" ,Object[],RowMapper);
org.springframework.jdbc.core.RowCallbackHandler 记录回调管理器接口 处理结果集
- template.query( "select*fromweb_personwhereid=?" ,Object[], new RowCallbackHandler(){
- public void processRow(ResultSetrs) throws SQLException{
- person.setId(rs.getInt( "id" ));
- });