Index: branches/APPDEV-3950-Migrate_Main_Frame_properties_To_JNDI/WEB-INF/src/com/showcase/mainframe/general/CustomResultSet.java =================================================================== diff -u -r178 -r197 --- branches/APPDEV-3950-Migrate_Main_Frame_properties_To_JNDI/WEB-INF/src/com/showcase/mainframe/general/CustomResultSet.java (.../CustomResultSet.java) (revision 178) +++ branches/APPDEV-3950-Migrate_Main_Frame_properties_To_JNDI/WEB-INF/src/com/showcase/mainframe/general/CustomResultSet.java (.../CustomResultSet.java) (revision 197) @@ -7,10 +7,13 @@ import java.sql.Array; import java.sql.Blob; import java.sql.Clob; +import java.sql.NClob; import java.sql.Ref; import java.sql.ResultSet; import java.sql.ResultSetMetaData; +import java.sql.RowId; import java.sql.SQLException; +import java.sql.SQLXML; import java.text.DecimalFormat; import java.text.SimpleDateFormat; import java.util.Enumeration; @@ -734,6 +737,12 @@ { throw new SQLException("getLong() is not implemented"); } + + public T getObject(String columnLabel, Class type) throws SQLException { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + /** * Not Implemented ! * @see java.sql.ResultSet @@ -742,6 +751,7 @@ { throw new SQLException("getObject() is not implemented"); } + /** * Not Implemented ! * @see java.sql.ResultSet @@ -750,6 +760,11 @@ { throw new SQLException("getObject() is not implemented"); } + + public T getObject(int columnIndex, Class type) throws SQLException { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + /** * Not Implemented ! * @see java.sql.ResultSet @@ -2055,5 +2070,53 @@ { throw new SQLException("This is not implemented"); } + + public RowId getRowId(int columnIndex) throws SQLException { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + public RowId getRowId(String columnLabel) throws SQLException { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + public void updateRowId(int columnIndex, RowId x) throws SQLException { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + public void updateRowId(String columnLabel, RowId x) throws SQLException { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + public void updateNClob(int columnIndex, NClob nClob) throws SQLException { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + public void updateNClob(String columnLabel, NClob nClob) throws SQLException { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + public NClob getNClob(int columnIndex) throws SQLException { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + public NClob getNClob(String columnLabel) throws SQLException { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + public SQLXML getSQLXML(int columnIndex) throws SQLException { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + public SQLXML getSQLXML(String columnLabel) throws SQLException { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } -} \ No newline at end of file +} Index: branches/APPDEV-3950-Migrate_Main_Frame_properties_To_JNDI/deploy/build.xml =================================================================== diff -u -r186 -r197 --- branches/APPDEV-3950-Migrate_Main_Frame_properties_To_JNDI/deploy/build.xml (.../build.xml) (revision 186) +++ branches/APPDEV-3950-Migrate_Main_Frame_properties_To_JNDI/deploy/build.xml (.../build.xml) (revision 197) @@ -56,7 +56,7 @@ - +