Skip to content

Commit

Permalink
Merge branch '6.0.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrannen committed Oct 2, 2023
2 parents 2639316 + 147abc9 commit c45bf3c
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -395,9 +395,9 @@ protected void initBeanWrapper(BeanWrapper bw) {
* Retrieve a JDBC object value for the specified column.
* <p>The default implementation calls
* {@link JdbcUtils#getResultSetValue(java.sql.ResultSet, int, Class)}
* using the type of the specified {@link PropertyDescriptor}
* Subclasses may override this to check specific value types upfront,
* or to post-process values return from {@code getResultSetValue}.
* using the type of the specified {@link PropertyDescriptor}.
* <p>Subclasses may override this to check specific value types upfront,
* or to post-process values returned from {@code getResultSetValue}.
* @param rs is the ResultSet holding the data
* @param index is the column index
* @param pd the bean property that each result object is expected to match
Expand All @@ -414,8 +414,8 @@ protected Object getColumnValue(ResultSet rs, int index, PropertyDescriptor pd)
* Retrieve a JDBC object value for the specified column.
* <p>The default implementation calls
* {@link JdbcUtils#getResultSetValue(java.sql.ResultSet, int, Class)}.
* Subclasses may override this to check specific value types upfront,
* or to post-process values return from {@code getResultSetValue}.
* <p>Subclasses may override this to check specific value types upfront,
* or to post-process values returned from {@code getResultSetValue}.
* @param rs is the ResultSet holding the data
* @param index is the column index
* @param paramType the target parameter type
Expand Down

0 comments on commit c45bf3c

Please sign in to comment.