Author: lmeadors
Date: Sat Nov 11 07:39:07 2006
New Revision: 473735
URL: http://svn.apache.org/viewvc?view=rev&rev=473735
Log:
Added a getter for the wrapped resultset, use with caution.
Modified:
ibatis/trunk/java/mapper/mapper2/src/com/ibatis/common/jdbc/logging/ResultSetLogProxy.java
Modified:
ibatis/trunk/java/mapper/mapper2/src/com/ibatis/common/jdbc/logging/ResultSetLogProxy.java
URL:
http://svn.apache.org/viewvc/ibatis/trunk/java/mapper/mapper2/src/com/ibatis/common/jdbc/logging/ResultSetLogProxy.java?view=diff&rev=473735&r1=473734&r2=473735
==============================================================================
---
ibatis/trunk/java/mapper/mapper2/src/com/ibatis/common/jdbc/logging/ResultSetLogProxy.java
(original)
+++
ibatis/trunk/java/mapper/mapper2/src/com/ibatis/common/jdbc/logging/ResultSetLogProxy.java
Sat Nov 11 07:39:07 2006
@@ -85,5 +85,12 @@
return (ResultSet) Proxy.newProxyInstance(cl, new
Class[]{ResultSet.class}, handler);
}
+ /**
+ * Get the wrapped result set
+ * @return the resultSet
+ */
+ public ResultSet getRs() {
+ return rs;
+ }
}