Larry Meadors wrote: > No. Nothing currently in iBATIS will get you result set metadata. > > Larry
What about using a custom TypeHandlerCallback and then
public Object getResult(ResultGetter getter) throws SQLException {
ResultSetMetaData md = getter.getResultSet().getMetaData();
// ...
return something;
}
Cheers,
Ole.
