[Mulgara-svn] r2103 - trunk/src/jar/util/java/org/mulgara/util
pag at mulgara.org
pag at mulgara.org
Fri May 11 20:41:04 UTC 2012
Author: pag
Date: 2012-05-11 20:41:03 +0000 (Fri, 11 May 2012)
New Revision: 2103
Modified:
trunk/src/jar/util/java/org/mulgara/util/MemoryResultSet.java
Log:
Added JDK 1.7 methods
Modified: trunk/src/jar/util/java/org/mulgara/util/MemoryResultSet.java
===================================================================
--- trunk/src/jar/util/java/org/mulgara/util/MemoryResultSet.java 2012-03-21 19:34:54 UTC (rev 2102)
+++ trunk/src/jar/util/java/org/mulgara/util/MemoryResultSet.java 2012-05-11 20:41:03 UTC (rev 2103)
@@ -633,6 +633,14 @@
throw new SQLException(NOT_IMPLEMENTED);
}
+ public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {
+ throw new SQLException(NOT_IMPLEMENTED);
+ }
+
+ public <T> T getObject(String columnLabel, Class<T> type) throws SQLException {
+ throw new SQLException(NOT_IMPLEMENTED);
+ }
+
public boolean isClosed() throws SQLException {
throw new SQLException(NOT_IMPLEMENTED);
}
More information about the Mulgara-svn
mailing list