Path: blob/master/test/jdk/javax/sql/testng/util/StubWebRowSetImpl.java
41153 views
/*1* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/22package util;2324import java.io.IOException;25import java.io.InputStream;26import java.io.OutputStream;27import java.io.Reader;28import java.io.Writer;29import java.math.BigDecimal;30import java.net.URL;31import java.sql.Array;32import java.sql.Blob;33import java.sql.Clob;34import java.sql.Connection;35import java.sql.Date;36import java.sql.NClob;37import java.sql.Ref;38import java.sql.ResultSet;39import java.sql.ResultSetMetaData;40import java.sql.RowId;41import java.sql.SQLException;42import java.sql.SQLWarning;43import java.sql.SQLXML;44import java.sql.Savepoint;45import java.sql.Statement;46import java.sql.Time;47import java.sql.Timestamp;48import java.util.Calendar;49import java.util.Collection;50import java.util.Map;51import javax.sql.RowSet;52import javax.sql.RowSetEvent;53import javax.sql.RowSetListener;54import javax.sql.RowSetMetaData;55import javax.sql.rowset.CachedRowSet;56import javax.sql.rowset.RowSetWarning;57import javax.sql.rowset.WebRowSet;58import javax.sql.rowset.spi.SyncProvider;59import javax.sql.rowset.spi.SyncProviderException;6061public class StubWebRowSetImpl implements WebRowSet {6263@Override64public void readXml(Reader reader) throws SQLException {65throw new UnsupportedOperationException("Not supported yet.");66}6768@Override69public void readXml(InputStream iStream) throws SQLException, IOException {70throw new UnsupportedOperationException("Not supported yet.");71}7273@Override74public void writeXml(ResultSet rs, Writer writer) throws SQLException {75throw new UnsupportedOperationException("Not supported yet.");76}7778@Override79public void writeXml(ResultSet rs, OutputStream oStream) throws SQLException, IOException {80throw new UnsupportedOperationException("Not supported yet.");81}8283@Override84public void writeXml(Writer writer) throws SQLException {85throw new UnsupportedOperationException("Not supported yet.");86}8788@Override89public void writeXml(OutputStream oStream) throws SQLException, IOException {90throw new UnsupportedOperationException("Not supported yet.");91}9293@Override94public void populate(ResultSet data) throws SQLException {95throw new UnsupportedOperationException("Not supported yet.");96}9798@Override99public void execute(Connection conn) throws SQLException {100throw new UnsupportedOperationException("Not supported yet.");101}102103@Override104public void acceptChanges() throws SyncProviderException {105throw new UnsupportedOperationException("Not supported yet.");106}107108@Override109public void acceptChanges(Connection con) throws SyncProviderException {110throw new UnsupportedOperationException("Not supported yet.");111}112113@Override114public void restoreOriginal() throws SQLException {115throw new UnsupportedOperationException("Not supported yet.");116}117118@Override119public void release() throws SQLException {120throw new UnsupportedOperationException("Not supported yet.");121}122123@Override124public void undoDelete() throws SQLException {125throw new UnsupportedOperationException("Not supported yet.");126}127128@Override129public void undoInsert() throws SQLException {130throw new UnsupportedOperationException("Not supported yet.");131}132133@Override134public void undoUpdate() throws SQLException {135throw new UnsupportedOperationException("Not supported yet.");136}137138@Override139public boolean columnUpdated(int idx) throws SQLException {140throw new UnsupportedOperationException("Not supported yet.");141}142143@Override144public boolean columnUpdated(String columnName) throws SQLException {145throw new UnsupportedOperationException("Not supported yet.");146}147148@Override149public Collection<?> toCollection() throws SQLException {150throw new UnsupportedOperationException("Not supported yet.");151}152153@Override154public Collection<?> toCollection(int column) throws SQLException {155throw new UnsupportedOperationException("Not supported yet.");156}157158@Override159public Collection<?> toCollection(String column) throws SQLException {160throw new UnsupportedOperationException("Not supported yet.");161}162163@Override164public SyncProvider getSyncProvider() throws SQLException {165throw new UnsupportedOperationException("Not supported yet.");166}167168@Override169public void setSyncProvider(String provider) throws SQLException {170throw new UnsupportedOperationException("Not supported yet.");171}172173@Override174public int size() {175throw new UnsupportedOperationException("Not supported yet.");176}177178@Override179public void setMetaData(RowSetMetaData md) throws SQLException {180throw new UnsupportedOperationException("Not supported yet.");181}182183@Override184public ResultSet getOriginal() throws SQLException {185throw new UnsupportedOperationException("Not supported yet.");186}187188@Override189public ResultSet getOriginalRow() throws SQLException {190throw new UnsupportedOperationException("Not supported yet.");191}192193@Override194public void setOriginalRow() throws SQLException {195throw new UnsupportedOperationException("Not supported yet.");196}197198@Override199public String getTableName() throws SQLException {200throw new UnsupportedOperationException("Not supported yet.");201}202203@Override204public void setTableName(String tabName) throws SQLException {205throw new UnsupportedOperationException("Not supported yet.");206}207208@Override209public int[] getKeyColumns() throws SQLException {210throw new UnsupportedOperationException("Not supported yet.");211}212213@Override214public void setKeyColumns(int[] keys) throws SQLException {215throw new UnsupportedOperationException("Not supported yet.");216}217218@Override219public RowSet createShared() throws SQLException {220throw new UnsupportedOperationException("Not supported yet.");221}222223@Override224public CachedRowSet createCopy() throws SQLException {225throw new UnsupportedOperationException("Not supported yet.");226}227228@Override229public CachedRowSet createCopySchema() throws SQLException {230throw new UnsupportedOperationException("Not supported yet.");231}232233@Override234public CachedRowSet createCopyNoConstraints() throws SQLException {235throw new UnsupportedOperationException("Not supported yet.");236}237238@Override239public RowSetWarning getRowSetWarnings() throws SQLException {240throw new UnsupportedOperationException("Not supported yet.");241}242243@Override244public boolean getShowDeleted() throws SQLException {245throw new UnsupportedOperationException("Not supported yet.");246}247248@Override249public void setShowDeleted(boolean b) throws SQLException {250throw new UnsupportedOperationException("Not supported yet.");251}252253@Override254public void commit() throws SQLException {255throw new UnsupportedOperationException("Not supported yet.");256}257258@Override259public void rollback() throws SQLException {260throw new UnsupportedOperationException("Not supported yet.");261}262263@Override264public void rollback(Savepoint s) throws SQLException {265throw new UnsupportedOperationException("Not supported yet.");266}267268@Override269public void rowSetPopulated(RowSetEvent event, int numRows) throws SQLException {270throw new UnsupportedOperationException("Not supported yet.");271}272273@Override274public void populate(ResultSet rs, int startRow) throws SQLException {275throw new UnsupportedOperationException("Not supported yet.");276}277278@Override279public void setPageSize(int size) throws SQLException {280throw new UnsupportedOperationException("Not supported yet.");281}282283@Override284public int getPageSize() {285throw new UnsupportedOperationException("Not supported yet.");286}287288@Override289public boolean nextPage() throws SQLException {290throw new UnsupportedOperationException("Not supported yet.");291}292293@Override294public boolean previousPage() throws SQLException {295throw new UnsupportedOperationException("Not supported yet.");296}297298@Override299public String getUrl() throws SQLException {300throw new UnsupportedOperationException("Not supported yet.");301}302303@Override304public void setUrl(String url) throws SQLException {305throw new UnsupportedOperationException("Not supported yet.");306}307308@Override309public String getDataSourceName() {310throw new UnsupportedOperationException("Not supported yet.");311}312313@Override314public void setDataSourceName(String name) throws SQLException {315throw new UnsupportedOperationException("Not supported yet.");316}317318@Override319public String getUsername() {320throw new UnsupportedOperationException("Not supported yet.");321}322323@Override324public void setUsername(String name) throws SQLException {325throw new UnsupportedOperationException("Not supported yet.");326}327328@Override329public String getPassword() {330throw new UnsupportedOperationException("Not supported yet.");331}332333@Override334public void setPassword(String password) throws SQLException {335throw new UnsupportedOperationException("Not supported yet.");336}337338@Override339public int getTransactionIsolation() {340throw new UnsupportedOperationException("Not supported yet.");341}342343@Override344public void setTransactionIsolation(int level) throws SQLException {345throw new UnsupportedOperationException("Not supported yet.");346}347348@Override349public Map<String, Class<?>> getTypeMap() throws SQLException {350throw new UnsupportedOperationException("Not supported yet.");351}352353@Override354public void setTypeMap(Map<String, Class<?>> map) throws SQLException {355throw new UnsupportedOperationException("Not supported yet.");356}357358@Override359public String getCommand() {360throw new UnsupportedOperationException("Not supported yet.");361}362363@Override364public void setCommand(String cmd) throws SQLException {365throw new UnsupportedOperationException("Not supported yet.");366}367368@Override369public boolean isReadOnly() {370throw new UnsupportedOperationException("Not supported yet.");371}372373@Override374public void setReadOnly(boolean value) throws SQLException {375throw new UnsupportedOperationException("Not supported yet.");376}377378@Override379public int getMaxFieldSize() throws SQLException {380throw new UnsupportedOperationException("Not supported yet.");381}382383@Override384public void setMaxFieldSize(int max) throws SQLException {385throw new UnsupportedOperationException("Not supported yet.");386}387388@Override389public int getMaxRows() throws SQLException {390throw new UnsupportedOperationException("Not supported yet.");391}392393@Override394public void setMaxRows(int max) throws SQLException {395throw new UnsupportedOperationException("Not supported yet.");396}397398@Override399public boolean getEscapeProcessing() throws SQLException {400throw new UnsupportedOperationException("Not supported yet.");401}402403@Override404public void setEscapeProcessing(boolean enable) throws SQLException {405throw new UnsupportedOperationException("Not supported yet.");406}407408@Override409public int getQueryTimeout() throws SQLException {410throw new UnsupportedOperationException("Not supported yet.");411}412413@Override414public void setQueryTimeout(int seconds) throws SQLException {415throw new UnsupportedOperationException("Not supported yet.");416}417418@Override419public void setType(int type) throws SQLException {420throw new UnsupportedOperationException("Not supported yet.");421}422423@Override424public void setConcurrency(int concurrency) throws SQLException {425throw new UnsupportedOperationException("Not supported yet.");426}427428@Override429public void setNull(int parameterIndex, int sqlType) throws SQLException {430throw new UnsupportedOperationException("Not supported yet.");431}432433@Override434public void setNull(String parameterName, int sqlType) throws SQLException {435throw new UnsupportedOperationException("Not supported yet.");436}437438@Override439public void setNull(int paramIndex, int sqlType, String typeName) throws SQLException {440throw new UnsupportedOperationException("Not supported yet.");441}442443@Override444public void setNull(String parameterName, int sqlType, String typeName) throws SQLException {445throw new UnsupportedOperationException("Not supported yet.");446}447448@Override449public void setBoolean(int parameterIndex, boolean x) throws SQLException {450throw new UnsupportedOperationException("Not supported yet.");451}452453@Override454public void setBoolean(String parameterName, boolean x) throws SQLException {455throw new UnsupportedOperationException("Not supported yet.");456}457458@Override459public void setByte(int parameterIndex, byte x) throws SQLException {460throw new UnsupportedOperationException("Not supported yet.");461}462463@Override464public void setByte(String parameterName, byte x) throws SQLException {465throw new UnsupportedOperationException("Not supported yet.");466}467468@Override469public void setShort(int parameterIndex, short x) throws SQLException {470throw new UnsupportedOperationException("Not supported yet.");471}472473@Override474public void setShort(String parameterName, short x) throws SQLException {475throw new UnsupportedOperationException("Not supported yet.");476}477478@Override479public void setInt(int parameterIndex, int x) throws SQLException {480throw new UnsupportedOperationException("Not supported yet.");481}482483@Override484public void setInt(String parameterName, int x) throws SQLException {485throw new UnsupportedOperationException("Not supported yet.");486}487488@Override489public void setLong(int parameterIndex, long x) throws SQLException {490throw new UnsupportedOperationException("Not supported yet.");491}492493@Override494public void setLong(String parameterName, long x) throws SQLException {495throw new UnsupportedOperationException("Not supported yet.");496}497498@Override499public void setFloat(int parameterIndex, float x) throws SQLException {500throw new UnsupportedOperationException("Not supported yet.");501}502503@Override504public void setFloat(String parameterName, float x) throws SQLException {505throw new UnsupportedOperationException("Not supported yet.");506}507508@Override509public void setDouble(int parameterIndex, double x) throws SQLException {510throw new UnsupportedOperationException("Not supported yet.");511}512513@Override514public void setDouble(String parameterName, double x) throws SQLException {515throw new UnsupportedOperationException("Not supported yet.");516}517518@Override519public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException {520throw new UnsupportedOperationException("Not supported yet.");521}522523@Override524public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException {525throw new UnsupportedOperationException("Not supported yet.");526}527528@Override529public void setString(int parameterIndex, String x) throws SQLException {530throw new UnsupportedOperationException("Not supported yet.");531}532533@Override534public void setString(String parameterName, String x) throws SQLException {535throw new UnsupportedOperationException("Not supported yet.");536}537538@Override539public void setBytes(int parameterIndex, byte[] x) throws SQLException {540throw new UnsupportedOperationException("Not supported yet.");541}542543@Override544public void setBytes(String parameterName, byte[] x) throws SQLException {545throw new UnsupportedOperationException("Not supported yet.");546}547548@Override549public void setDate(int parameterIndex, Date x) throws SQLException {550throw new UnsupportedOperationException("Not supported yet.");551}552553@Override554public void setTime(int parameterIndex, Time x) throws SQLException {555throw new UnsupportedOperationException("Not supported yet.");556}557558@Override559public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException {560throw new UnsupportedOperationException("Not supported yet.");561}562563@Override564public void setTimestamp(String parameterName, Timestamp x) throws SQLException {565throw new UnsupportedOperationException("Not supported yet.");566}567568@Override569public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException {570throw new UnsupportedOperationException("Not supported yet.");571}572573@Override574public void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException {575throw new UnsupportedOperationException("Not supported yet.");576}577578@Override579public void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException {580throw new UnsupportedOperationException("Not supported yet.");581}582583@Override584public void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException {585throw new UnsupportedOperationException("Not supported yet.");586}587588@Override589public void setCharacterStream(int parameterIndex, Reader reader, int length) throws SQLException {590throw new UnsupportedOperationException("Not supported yet.");591}592593@Override594public void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException {595throw new UnsupportedOperationException("Not supported yet.");596}597598@Override599public void setAsciiStream(int parameterIndex, InputStream x) throws SQLException {600throw new UnsupportedOperationException("Not supported yet.");601}602603@Override604public void setAsciiStream(String parameterName, InputStream x) throws SQLException {605throw new UnsupportedOperationException("Not supported yet.");606}607608@Override609public void setBinaryStream(int parameterIndex, InputStream x) throws SQLException {610throw new UnsupportedOperationException("Not supported yet.");611}612613@Override614public void setBinaryStream(String parameterName, InputStream x) throws SQLException {615throw new UnsupportedOperationException("Not supported yet.");616}617618@Override619public void setCharacterStream(int parameterIndex, Reader reader) throws SQLException {620throw new UnsupportedOperationException("Not supported yet.");621}622623@Override624public void setCharacterStream(String parameterName, Reader reader) throws SQLException {625throw new UnsupportedOperationException("Not supported yet.");626}627628@Override629public void setNCharacterStream(int parameterIndex, Reader value) throws SQLException {630throw new UnsupportedOperationException("Not supported yet.");631}632633@Override634public void setObject(int parameterIndex, Object x, int targetSqlType, int scaleOrLength) throws SQLException {635throw new UnsupportedOperationException("Not supported yet.");636}637638@Override639public void setObject(String parameterName, Object x, int targetSqlType, int scale) throws SQLException {640throw new UnsupportedOperationException("Not supported yet.");641}642643@Override644public void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException {645throw new UnsupportedOperationException("Not supported yet.");646}647648@Override649public void setObject(String parameterName, Object x, int targetSqlType) throws SQLException {650throw new UnsupportedOperationException("Not supported yet.");651}652653@Override654public void setObject(String parameterName, Object x) throws SQLException {655throw new UnsupportedOperationException("Not supported yet.");656}657658@Override659public void setObject(int parameterIndex, Object x) throws SQLException {660throw new UnsupportedOperationException("Not supported yet.");661}662663@Override664public void setRef(int i, Ref x) throws SQLException {665throw new UnsupportedOperationException("Not supported yet.");666}667668@Override669public void setBlob(int i, Blob x) throws SQLException {670throw new UnsupportedOperationException("Not supported yet.");671}672673@Override674public void setBlob(int parameterIndex, InputStream inputStream, long length) throws SQLException {675throw new UnsupportedOperationException("Not supported yet.");676}677678@Override679public void setBlob(int parameterIndex, InputStream inputStream) throws SQLException {680throw new UnsupportedOperationException("Not supported yet.");681}682683@Override684public void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException {685throw new UnsupportedOperationException("Not supported yet.");686}687688@Override689public void setBlob(String parameterName, Blob x) throws SQLException {690throw new UnsupportedOperationException("Not supported yet.");691}692693@Override694public void setBlob(String parameterName, InputStream inputStream) throws SQLException {695throw new UnsupportedOperationException("Not supported yet.");696}697698@Override699public void setClob(int i, Clob x) throws SQLException {700throw new UnsupportedOperationException("Not supported yet.");701}702703@Override704public void setClob(int parameterIndex, Reader reader, long length) throws SQLException {705throw new UnsupportedOperationException("Not supported yet.");706}707708@Override709public void setClob(int parameterIndex, Reader reader) throws SQLException {710throw new UnsupportedOperationException("Not supported yet.");711}712713@Override714public void setClob(String parameterName, Reader reader, long length) throws SQLException {715throw new UnsupportedOperationException("Not supported yet.");716}717718@Override719public void setClob(String parameterName, Clob x) throws SQLException {720throw new UnsupportedOperationException("Not supported yet.");721}722723@Override724public void setClob(String parameterName, Reader reader) throws SQLException {725throw new UnsupportedOperationException("Not supported yet.");726}727728@Override729public void setArray(int i, Array x) throws SQLException {730throw new UnsupportedOperationException("Not supported yet.");731}732733@Override734public void setDate(int parameterIndex, Date x, Calendar cal) throws SQLException {735throw new UnsupportedOperationException("Not supported yet.");736}737738@Override739public void setDate(String parameterName, Date x) throws SQLException {740throw new UnsupportedOperationException("Not supported yet.");741}742743@Override744public void setDate(String parameterName, Date x, Calendar cal) throws SQLException {745throw new UnsupportedOperationException("Not supported yet.");746}747748@Override749public void setTime(int parameterIndex, Time x, Calendar cal) throws SQLException {750throw new UnsupportedOperationException("Not supported yet.");751}752753@Override754public void setTime(String parameterName, Time x) throws SQLException {755throw new UnsupportedOperationException("Not supported yet.");756}757758@Override759public void setTime(String parameterName, Time x, Calendar cal) throws SQLException {760throw new UnsupportedOperationException("Not supported yet.");761}762763@Override764public void setTimestamp(int parameterIndex, Timestamp x, Calendar cal) throws SQLException {765throw new UnsupportedOperationException("Not supported yet.");766}767768@Override769public void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException {770throw new UnsupportedOperationException("Not supported yet.");771}772773@Override774public void clearParameters() throws SQLException {775throw new UnsupportedOperationException("Not supported yet.");776}777778@Override779public void execute() throws SQLException {780throw new UnsupportedOperationException("Not supported yet.");781}782783@Override784public void addRowSetListener(RowSetListener listener) {785throw new UnsupportedOperationException("Not supported yet.");786}787788@Override789public void removeRowSetListener(RowSetListener listener) {790throw new UnsupportedOperationException("Not supported yet.");791}792793@Override794public void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException {795throw new UnsupportedOperationException("Not supported yet.");796}797798@Override799public void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException {800throw new UnsupportedOperationException("Not supported yet.");801}802803@Override804public void setRowId(int parameterIndex, RowId x) throws SQLException {805throw new UnsupportedOperationException("Not supported yet.");806}807808@Override809public void setRowId(String parameterName, RowId x) throws SQLException {810throw new UnsupportedOperationException("Not supported yet.");811}812813@Override814public void setNString(int parameterIndex, String value) throws SQLException {815throw new UnsupportedOperationException("Not supported yet.");816}817818@Override819public void setNString(String parameterName, String value) throws SQLException {820throw new UnsupportedOperationException("Not supported yet.");821}822823@Override824public void setNCharacterStream(int parameterIndex, Reader value, long length) throws SQLException {825throw new UnsupportedOperationException("Not supported yet.");826}827828@Override829public void setNCharacterStream(String parameterName, Reader value, long length) throws SQLException {830throw new UnsupportedOperationException("Not supported yet.");831}832833@Override834public void setNCharacterStream(String parameterName, Reader value) throws SQLException {835throw new UnsupportedOperationException("Not supported yet.");836}837838@Override839public void setNClob(String parameterName, NClob value) throws SQLException {840throw new UnsupportedOperationException("Not supported yet.");841}842843@Override844public void setNClob(String parameterName, Reader reader, long length) throws SQLException {845throw new UnsupportedOperationException("Not supported yet.");846}847848@Override849public void setNClob(String parameterName, Reader reader) throws SQLException {850throw new UnsupportedOperationException("Not supported yet.");851}852853@Override854public void setNClob(int parameterIndex, Reader reader, long length) throws SQLException {855throw new UnsupportedOperationException("Not supported yet.");856}857858@Override859public void setNClob(int parameterIndex, NClob value) throws SQLException {860throw new UnsupportedOperationException("Not supported yet.");861}862863@Override864public void setNClob(int parameterIndex, Reader reader) throws SQLException {865throw new UnsupportedOperationException("Not supported yet.");866}867868@Override869public void setURL(int parameterIndex, URL x) throws SQLException {870throw new UnsupportedOperationException("Not supported yet.");871}872873@Override874public boolean next() throws SQLException {875throw new UnsupportedOperationException("Not supported yet.");876}877878@Override879public void close() throws SQLException {880throw new UnsupportedOperationException("Not supported yet.");881}882883@Override884public boolean wasNull() throws SQLException {885throw new UnsupportedOperationException("Not supported yet.");886}887888@Override889public String getString(int columnIndex) throws SQLException {890throw new UnsupportedOperationException("Not supported yet.");891}892893@Override894public boolean getBoolean(int columnIndex) throws SQLException {895throw new UnsupportedOperationException("Not supported yet.");896}897898@Override899public byte getByte(int columnIndex) throws SQLException {900throw new UnsupportedOperationException("Not supported yet.");901}902903@Override904public short getShort(int columnIndex) throws SQLException {905throw new UnsupportedOperationException("Not supported yet.");906}907908@Override909public int getInt(int columnIndex) throws SQLException {910throw new UnsupportedOperationException("Not supported yet.");911}912913@Override914public long getLong(int columnIndex) throws SQLException {915throw new UnsupportedOperationException("Not supported yet.");916}917918@Override919public float getFloat(int columnIndex) throws SQLException {920throw new UnsupportedOperationException("Not supported yet.");921}922923@Override924public double getDouble(int columnIndex) throws SQLException {925throw new UnsupportedOperationException("Not supported yet.");926}927928@Override929public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {930throw new UnsupportedOperationException("Not supported yet.");931}932933@Override934public byte[] getBytes(int columnIndex) throws SQLException {935throw new UnsupportedOperationException("Not supported yet.");936}937938@Override939public Date getDate(int columnIndex) throws SQLException {940throw new UnsupportedOperationException("Not supported yet.");941}942943@Override944public Time getTime(int columnIndex) throws SQLException {945throw new UnsupportedOperationException("Not supported yet.");946}947948@Override949public Timestamp getTimestamp(int columnIndex) throws SQLException {950throw new UnsupportedOperationException("Not supported yet.");951}952953@Override954public InputStream getAsciiStream(int columnIndex) throws SQLException {955throw new UnsupportedOperationException("Not supported yet.");956}957958@Override959public InputStream getUnicodeStream(int columnIndex) throws SQLException {960throw new UnsupportedOperationException("Not supported yet.");961}962963@Override964public InputStream getBinaryStream(int columnIndex) throws SQLException {965throw new UnsupportedOperationException("Not supported yet.");966}967968@Override969public String getString(String columnLabel) throws SQLException {970throw new UnsupportedOperationException("Not supported yet.");971}972973@Override974public boolean getBoolean(String columnLabel) throws SQLException {975throw new UnsupportedOperationException("Not supported yet.");976}977978@Override979public byte getByte(String columnLabel) throws SQLException {980throw new UnsupportedOperationException("Not supported yet.");981}982983@Override984public short getShort(String columnLabel) throws SQLException {985throw new UnsupportedOperationException("Not supported yet.");986}987988@Override989public int getInt(String columnLabel) throws SQLException {990throw new UnsupportedOperationException("Not supported yet.");991}992993@Override994public long getLong(String columnLabel) throws SQLException {995throw new UnsupportedOperationException("Not supported yet.");996}997998@Override999public float getFloat(String columnLabel) throws SQLException {1000throw new UnsupportedOperationException("Not supported yet.");1001}10021003@Override1004public double getDouble(String columnLabel) throws SQLException {1005throw new UnsupportedOperationException("Not supported yet.");1006}10071008@Override1009public BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException {1010throw new UnsupportedOperationException("Not supported yet.");1011}10121013@Override1014public byte[] getBytes(String columnLabel) throws SQLException {1015throw new UnsupportedOperationException("Not supported yet.");1016}10171018@Override1019public Date getDate(String columnLabel) throws SQLException {1020throw new UnsupportedOperationException("Not supported yet.");1021}10221023@Override1024public Time getTime(String columnLabel) throws SQLException {1025throw new UnsupportedOperationException("Not supported yet.");1026}10271028@Override1029public Timestamp getTimestamp(String columnLabel) throws SQLException {1030throw new UnsupportedOperationException("Not supported yet.");1031}10321033@Override1034public InputStream getAsciiStream(String columnLabel) throws SQLException {1035throw new UnsupportedOperationException("Not supported yet.");1036}10371038@Override1039public InputStream getUnicodeStream(String columnLabel) throws SQLException {1040throw new UnsupportedOperationException("Not supported yet.");1041}10421043@Override1044public InputStream getBinaryStream(String columnLabel) throws SQLException {1045throw new UnsupportedOperationException("Not supported yet.");1046}10471048@Override1049public SQLWarning getWarnings() throws SQLException {1050throw new UnsupportedOperationException("Not supported yet.");1051}10521053@Override1054public void clearWarnings() throws SQLException {1055throw new UnsupportedOperationException("Not supported yet.");1056}10571058@Override1059public String getCursorName() throws SQLException {1060throw new UnsupportedOperationException("Not supported yet.");1061}10621063@Override1064public ResultSetMetaData getMetaData() throws SQLException {1065throw new UnsupportedOperationException("Not supported yet.");1066}10671068@Override1069public Object getObject(int columnIndex) throws SQLException {1070throw new UnsupportedOperationException("Not supported yet.");1071}10721073@Override1074public Object getObject(String columnLabel) throws SQLException {1075throw new UnsupportedOperationException("Not supported yet.");1076}10771078@Override1079public int findColumn(String columnLabel) throws SQLException {1080throw new UnsupportedOperationException("Not supported yet.");1081}10821083@Override1084public Reader getCharacterStream(int columnIndex) throws SQLException {1085throw new UnsupportedOperationException("Not supported yet.");1086}10871088@Override1089public Reader getCharacterStream(String columnLabel) throws SQLException {1090throw new UnsupportedOperationException("Not supported yet.");1091}10921093@Override1094public BigDecimal getBigDecimal(int columnIndex) throws SQLException {1095throw new UnsupportedOperationException("Not supported yet.");1096}10971098@Override1099public BigDecimal getBigDecimal(String columnLabel) throws SQLException {1100throw new UnsupportedOperationException("Not supported yet.");1101}11021103@Override1104public boolean isBeforeFirst() throws SQLException {1105throw new UnsupportedOperationException("Not supported yet.");1106}11071108@Override1109public boolean isAfterLast() throws SQLException {1110throw new UnsupportedOperationException("Not supported yet.");1111}11121113@Override1114public boolean isFirst() throws SQLException {1115throw new UnsupportedOperationException("Not supported yet.");1116}11171118@Override1119public boolean isLast() throws SQLException {1120throw new UnsupportedOperationException("Not supported yet.");1121}11221123@Override1124public void beforeFirst() throws SQLException {1125throw new UnsupportedOperationException("Not supported yet.");1126}11271128@Override1129public void afterLast() throws SQLException {1130throw new UnsupportedOperationException("Not supported yet.");1131}11321133@Override1134public boolean first() throws SQLException {1135throw new UnsupportedOperationException("Not supported yet.");1136}11371138@Override1139public boolean last() throws SQLException {1140throw new UnsupportedOperationException("Not supported yet.");1141}11421143@Override1144public int getRow() throws SQLException {1145throw new UnsupportedOperationException("Not supported yet.");1146}11471148@Override1149public boolean absolute(int row) throws SQLException {1150throw new UnsupportedOperationException("Not supported yet.");1151}11521153@Override1154public boolean relative(int rows) throws SQLException {1155throw new UnsupportedOperationException("Not supported yet.");1156}11571158@Override1159public boolean previous() throws SQLException {1160throw new UnsupportedOperationException("Not supported yet.");1161}11621163@Override1164public void setFetchDirection(int direction) throws SQLException {1165throw new UnsupportedOperationException("Not supported yet.");1166}11671168@Override1169public int getFetchDirection() throws SQLException {1170throw new UnsupportedOperationException("Not supported yet.");1171}11721173@Override1174public void setFetchSize(int rows) throws SQLException {1175throw new UnsupportedOperationException("Not supported yet.");1176}11771178@Override1179public int getFetchSize() throws SQLException {1180throw new UnsupportedOperationException("Not supported yet.");1181}11821183@Override1184public int getType() throws SQLException {1185throw new UnsupportedOperationException("Not supported yet.");1186}11871188@Override1189public int getConcurrency() throws SQLException {1190throw new UnsupportedOperationException("Not supported yet.");1191}11921193@Override1194public boolean rowUpdated() throws SQLException {1195throw new UnsupportedOperationException("Not supported yet.");1196}11971198@Override1199public boolean rowInserted() throws SQLException {1200throw new UnsupportedOperationException("Not supported yet.");1201}12021203@Override1204public boolean rowDeleted() throws SQLException {1205throw new UnsupportedOperationException("Not supported yet.");1206}12071208@Override1209public void updateNull(int columnIndex) throws SQLException {1210throw new UnsupportedOperationException("Not supported yet.");1211}12121213@Override1214public void updateBoolean(int columnIndex, boolean x) throws SQLException {1215throw new UnsupportedOperationException("Not supported yet.");1216}12171218@Override1219public void updateByte(int columnIndex, byte x) throws SQLException {1220throw new UnsupportedOperationException("Not supported yet.");1221}12221223@Override1224public void updateShort(int columnIndex, short x) throws SQLException {1225throw new UnsupportedOperationException("Not supported yet.");1226}12271228@Override1229public void updateInt(int columnIndex, int x) throws SQLException {1230throw new UnsupportedOperationException("Not supported yet.");1231}12321233@Override1234public void updateLong(int columnIndex, long x) throws SQLException {1235throw new UnsupportedOperationException("Not supported yet.");1236}12371238@Override1239public void updateFloat(int columnIndex, float x) throws SQLException {1240throw new UnsupportedOperationException("Not supported yet.");1241}12421243@Override1244public void updateDouble(int columnIndex, double x) throws SQLException {1245throw new UnsupportedOperationException("Not supported yet.");1246}12471248@Override1249public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {1250throw new UnsupportedOperationException("Not supported yet.");1251}12521253@Override1254public void updateString(int columnIndex, String x) throws SQLException {1255throw new UnsupportedOperationException("Not supported yet.");1256}12571258@Override1259public void updateBytes(int columnIndex, byte[] x) throws SQLException {1260throw new UnsupportedOperationException("Not supported yet.");1261}12621263@Override1264public void updateDate(int columnIndex, Date x) throws SQLException {1265throw new UnsupportedOperationException("Not supported yet.");1266}12671268@Override1269public void updateTime(int columnIndex, Time x) throws SQLException {1270throw new UnsupportedOperationException("Not supported yet.");1271}12721273@Override1274public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {1275throw new UnsupportedOperationException("Not supported yet.");1276}12771278@Override1279public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {1280throw new UnsupportedOperationException("Not supported yet.");1281}12821283@Override1284public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {1285throw new UnsupportedOperationException("Not supported yet.");1286}12871288@Override1289public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {1290throw new UnsupportedOperationException("Not supported yet.");1291}12921293@Override1294public void updateObject(int columnIndex, Object x, int scaleOrLength) throws SQLException {1295throw new UnsupportedOperationException("Not supported yet.");1296}12971298@Override1299public void updateObject(int columnIndex, Object x) throws SQLException {1300throw new UnsupportedOperationException("Not supported yet.");1301}13021303@Override1304public void updateNull(String columnLabel) throws SQLException {1305throw new UnsupportedOperationException("Not supported yet.");1306}13071308@Override1309public void updateBoolean(String columnLabel, boolean x) throws SQLException {1310throw new UnsupportedOperationException("Not supported yet.");1311}13121313@Override1314public void updateByte(String columnLabel, byte x) throws SQLException {1315throw new UnsupportedOperationException("Not supported yet.");1316}13171318@Override1319public void updateShort(String columnLabel, short x) throws SQLException {1320throw new UnsupportedOperationException("Not supported yet.");1321}13221323@Override1324public void updateInt(String columnLabel, int x) throws SQLException {1325throw new UnsupportedOperationException("Not supported yet.");1326}13271328@Override1329public void updateLong(String columnLabel, long x) throws SQLException {1330throw new UnsupportedOperationException("Not supported yet.");1331}13321333@Override1334public void updateFloat(String columnLabel, float x) throws SQLException {1335throw new UnsupportedOperationException("Not supported yet.");1336}13371338@Override1339public void updateDouble(String columnLabel, double x) throws SQLException {1340throw new UnsupportedOperationException("Not supported yet.");1341}13421343@Override1344public void updateBigDecimal(String columnLabel, BigDecimal x) throws SQLException {1345throw new UnsupportedOperationException("Not supported yet.");1346}13471348@Override1349public void updateString(String columnLabel, String x) throws SQLException {1350throw new UnsupportedOperationException("Not supported yet.");1351}13521353@Override1354public void updateBytes(String columnLabel, byte[] x) throws SQLException {1355throw new UnsupportedOperationException("Not supported yet.");1356}13571358@Override1359public void updateDate(String columnLabel, Date x) throws SQLException {1360throw new UnsupportedOperationException("Not supported yet.");1361}13621363@Override1364public void updateTime(String columnLabel, Time x) throws SQLException {1365throw new UnsupportedOperationException("Not supported yet.");1366}13671368@Override1369public void updateTimestamp(String columnLabel, Timestamp x) throws SQLException {1370throw new UnsupportedOperationException("Not supported yet.");1371}13721373@Override1374public void updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException {1375throw new UnsupportedOperationException("Not supported yet.");1376}13771378@Override1379public void updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException {1380throw new UnsupportedOperationException("Not supported yet.");1381}13821383@Override1384public void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException {1385throw new UnsupportedOperationException("Not supported yet.");1386}13871388@Override1389public void updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException {1390throw new UnsupportedOperationException("Not supported yet.");1391}13921393@Override1394public void updateObject(String columnLabel, Object x) throws SQLException {1395throw new UnsupportedOperationException("Not supported yet.");1396}13971398@Override1399public void insertRow() throws SQLException {1400throw new UnsupportedOperationException("Not supported yet.");1401}14021403@Override1404public void updateRow() throws SQLException {1405throw new UnsupportedOperationException("Not supported yet.");1406}14071408@Override1409public void deleteRow() throws SQLException {1410throw new UnsupportedOperationException("Not supported yet.");1411}14121413@Override1414public void refreshRow() throws SQLException {1415throw new UnsupportedOperationException("Not supported yet.");1416}14171418@Override1419public void cancelRowUpdates() throws SQLException {1420throw new UnsupportedOperationException("Not supported yet.");1421}14221423@Override1424public void moveToInsertRow() throws SQLException {1425throw new UnsupportedOperationException("Not supported yet.");1426}14271428@Override1429public void moveToCurrentRow() throws SQLException {1430throw new UnsupportedOperationException("Not supported yet.");1431}14321433@Override1434public Statement getStatement() throws SQLException {1435throw new UnsupportedOperationException("Not supported yet.");1436}14371438@Override1439public Object getObject(int columnIndex, Map<String, Class<?>> map) throws SQLException {1440throw new UnsupportedOperationException("Not supported yet.");1441}14421443@Override1444public Ref getRef(int columnIndex) throws SQLException {1445throw new UnsupportedOperationException("Not supported yet.");1446}14471448@Override1449public Blob getBlob(int columnIndex) throws SQLException {1450throw new UnsupportedOperationException("Not supported yet.");1451}14521453@Override1454public Clob getClob(int columnIndex) throws SQLException {1455throw new UnsupportedOperationException("Not supported yet.");1456}14571458@Override1459public Array getArray(int columnIndex) throws SQLException {1460throw new UnsupportedOperationException("Not supported yet.");1461}14621463@Override1464public Object getObject(String columnLabel, Map<String, Class<?>> map) throws SQLException {1465throw new UnsupportedOperationException("Not supported yet.");1466}14671468@Override1469public Ref getRef(String columnLabel) throws SQLException {1470throw new UnsupportedOperationException("Not supported yet.");1471}14721473@Override1474public Blob getBlob(String columnLabel) throws SQLException {1475throw new UnsupportedOperationException("Not supported yet.");1476}14771478@Override1479public Clob getClob(String columnLabel) throws SQLException {1480throw new UnsupportedOperationException("Not supported yet.");1481}14821483@Override1484public Array getArray(String columnLabel) throws SQLException {1485throw new UnsupportedOperationException("Not supported yet.");1486}14871488@Override1489public Date getDate(int columnIndex, Calendar cal) throws SQLException {1490throw new UnsupportedOperationException("Not supported yet.");1491}14921493@Override1494public Date getDate(String columnLabel, Calendar cal) throws SQLException {1495throw new UnsupportedOperationException("Not supported yet.");1496}14971498@Override1499public Time getTime(int columnIndex, Calendar cal) throws SQLException {1500throw new UnsupportedOperationException("Not supported yet.");1501}15021503@Override1504public Time getTime(String columnLabel, Calendar cal) throws SQLException {1505throw new UnsupportedOperationException("Not supported yet.");1506}15071508@Override1509public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {1510throw new UnsupportedOperationException("Not supported yet.");1511}15121513@Override1514public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException {1515throw new UnsupportedOperationException("Not supported yet.");1516}15171518@Override1519public URL getURL(int columnIndex) throws SQLException {1520throw new UnsupportedOperationException("Not supported yet.");1521}15221523@Override1524public URL getURL(String columnLabel) throws SQLException {1525throw new UnsupportedOperationException("Not supported yet.");1526}15271528@Override1529public void updateRef(int columnIndex, Ref x) throws SQLException {1530throw new UnsupportedOperationException("Not supported yet.");1531}15321533@Override1534public void updateRef(String columnLabel, Ref x) throws SQLException {1535throw new UnsupportedOperationException("Not supported yet.");1536}15371538@Override1539public void updateBlob(int columnIndex, Blob x) throws SQLException {1540throw new UnsupportedOperationException("Not supported yet.");1541}15421543@Override1544public void updateBlob(String columnLabel, Blob x) throws SQLException {1545throw new UnsupportedOperationException("Not supported yet.");1546}15471548@Override1549public void updateClob(int columnIndex, Clob x) throws SQLException {1550throw new UnsupportedOperationException("Not supported yet.");1551}15521553@Override1554public void updateClob(String columnLabel, Clob x) throws SQLException {1555throw new UnsupportedOperationException("Not supported yet.");1556}15571558@Override1559public void updateArray(int columnIndex, Array x) throws SQLException {1560throw new UnsupportedOperationException("Not supported yet.");1561}15621563@Override1564public void updateArray(String columnLabel, Array x) throws SQLException {1565throw new UnsupportedOperationException("Not supported yet.");1566}15671568@Override1569public RowId getRowId(int columnIndex) throws SQLException {1570throw new UnsupportedOperationException("Not supported yet.");1571}15721573@Override1574public RowId getRowId(String columnLabel) throws SQLException {1575throw new UnsupportedOperationException("Not supported yet.");1576}15771578@Override1579public void updateRowId(int columnIndex, RowId x) throws SQLException {1580throw new UnsupportedOperationException("Not supported yet.");1581}15821583@Override1584public void updateRowId(String columnLabel, RowId x) throws SQLException {1585throw new UnsupportedOperationException("Not supported yet.");1586}15871588@Override1589public int getHoldability() throws SQLException {1590throw new UnsupportedOperationException("Not supported yet.");1591}15921593@Override1594public boolean isClosed() throws SQLException {1595throw new UnsupportedOperationException("Not supported yet.");1596}15971598@Override1599public void updateNString(int columnIndex, String nString) throws SQLException {1600throw new UnsupportedOperationException("Not supported yet.");1601}16021603@Override1604public void updateNString(String columnLabel, String nString) throws SQLException {1605throw new UnsupportedOperationException("Not supported yet.");1606}16071608@Override1609public void updateNClob(int columnIndex, NClob nClob) throws SQLException {1610throw new UnsupportedOperationException("Not supported yet.");1611}16121613@Override1614public void updateNClob(String columnLabel, NClob nClob) throws SQLException {1615throw new UnsupportedOperationException("Not supported yet.");1616}16171618@Override1619public NClob getNClob(int columnIndex) throws SQLException {1620throw new UnsupportedOperationException("Not supported yet.");1621}16221623@Override1624public NClob getNClob(String columnLabel) throws SQLException {1625throw new UnsupportedOperationException("Not supported yet.");1626}16271628@Override1629public SQLXML getSQLXML(int columnIndex) throws SQLException {1630throw new UnsupportedOperationException("Not supported yet.");1631}16321633@Override1634public SQLXML getSQLXML(String columnLabel) throws SQLException {1635throw new UnsupportedOperationException("Not supported yet.");1636}16371638@Override1639public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException {1640throw new UnsupportedOperationException("Not supported yet.");1641}16421643@Override1644public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException {1645throw new UnsupportedOperationException("Not supported yet.");1646}16471648@Override1649public String getNString(int columnIndex) throws SQLException {1650throw new UnsupportedOperationException("Not supported yet.");1651}16521653@Override1654public String getNString(String columnLabel) throws SQLException {1655throw new UnsupportedOperationException("Not supported yet.");1656}16571658@Override1659public Reader getNCharacterStream(int columnIndex) throws SQLException {1660throw new UnsupportedOperationException("Not supported yet.");1661}16621663@Override1664public Reader getNCharacterStream(String columnLabel) throws SQLException {1665throw new UnsupportedOperationException("Not supported yet.");1666}16671668@Override1669public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException {1670throw new UnsupportedOperationException("Not supported yet.");1671}16721673@Override1674public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {1675throw new UnsupportedOperationException("Not supported yet.");1676}16771678@Override1679public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException {1680throw new UnsupportedOperationException("Not supported yet.");1681}16821683@Override1684public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {1685throw new UnsupportedOperationException("Not supported yet.");1686}16871688@Override1689public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {1690throw new UnsupportedOperationException("Not supported yet.");1691}16921693@Override1694public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException {1695throw new UnsupportedOperationException("Not supported yet.");1696}16971698@Override1699public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException {1700throw new UnsupportedOperationException("Not supported yet.");1701}17021703@Override1704public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {1705throw new UnsupportedOperationException("Not supported yet.");1706}17071708@Override1709public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException {1710throw new UnsupportedOperationException("Not supported yet.");1711}17121713@Override1714public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException {1715throw new UnsupportedOperationException("Not supported yet.");1716}17171718@Override1719public void updateClob(int columnIndex, Reader reader, long length) throws SQLException {1720throw new UnsupportedOperationException("Not supported yet.");1721}17221723@Override1724public void updateClob(String columnLabel, Reader reader, long length) throws SQLException {1725throw new UnsupportedOperationException("Not supported yet.");1726}17271728@Override1729public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException {1730throw new UnsupportedOperationException("Not supported yet.");1731}17321733@Override1734public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException {1735throw new UnsupportedOperationException("Not supported yet.");1736}17371738@Override1739public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException {1740throw new UnsupportedOperationException("Not supported yet.");1741}17421743@Override1744public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException {1745throw new UnsupportedOperationException("Not supported yet.");1746}17471748@Override1749public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException {1750throw new UnsupportedOperationException("Not supported yet.");1751}17521753@Override1754public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException {1755throw new UnsupportedOperationException("Not supported yet.");1756}17571758@Override1759public void updateCharacterStream(int columnIndex, Reader x) throws SQLException {1760throw new UnsupportedOperationException("Not supported yet.");1761}17621763@Override1764public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException {1765throw new UnsupportedOperationException("Not supported yet.");1766}17671768@Override1769public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException {1770throw new UnsupportedOperationException("Not supported yet.");1771}17721773@Override1774public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException {1775throw new UnsupportedOperationException("Not supported yet.");1776}17771778@Override1779public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException {1780throw new UnsupportedOperationException("Not supported yet.");1781}17821783@Override1784public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException {1785throw new UnsupportedOperationException("Not supported yet.");1786}17871788@Override1789public void updateClob(int columnIndex, Reader reader) throws SQLException {1790throw new UnsupportedOperationException("Not supported yet.");1791}17921793@Override1794public void updateClob(String columnLabel, Reader reader) throws SQLException {1795throw new UnsupportedOperationException("Not supported yet.");1796}17971798@Override1799public void updateNClob(int columnIndex, Reader reader) throws SQLException {1800throw new UnsupportedOperationException("Not supported yet.");1801}18021803@Override1804public void updateNClob(String columnLabel, Reader reader) throws SQLException {1805throw new UnsupportedOperationException("Not supported yet.");1806}18071808@Override1809public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {1810throw new UnsupportedOperationException("Not supported yet.");1811}18121813@Override1814public <T> T getObject(String columnLabel, Class<T> type) throws SQLException {1815throw new UnsupportedOperationException("Not supported yet.");1816}18171818@Override1819public <T> T unwrap(Class<T> iface) throws SQLException {1820throw new UnsupportedOperationException("Not supported yet.");1821}18221823@Override1824public boolean isWrapperFor(Class<?> iface) throws SQLException {1825throw new UnsupportedOperationException("Not supported yet.");1826}18271828@Override1829public void setMatchColumn(int columnIdx) throws SQLException {1830throw new UnsupportedOperationException("Not supported yet.");1831}18321833@Override1834public void setMatchColumn(int[] columnIdxes) throws SQLException {1835throw new UnsupportedOperationException("Not supported yet.");1836}18371838@Override1839public void setMatchColumn(String columnName) throws SQLException {1840throw new UnsupportedOperationException("Not supported yet.");1841}18421843@Override1844public void setMatchColumn(String[] columnNames) throws SQLException {1845throw new UnsupportedOperationException("Not supported yet.");1846}18471848@Override1849public int[] getMatchColumnIndexes() throws SQLException {1850throw new UnsupportedOperationException("Not supported yet.");1851}18521853@Override1854public String[] getMatchColumnNames() throws SQLException {1855throw new UnsupportedOperationException("Not supported yet.");1856}18571858@Override1859public void unsetMatchColumn(int columnIdx) throws SQLException {1860throw new UnsupportedOperationException("Not supported yet.");1861}18621863@Override1864public void unsetMatchColumn(int[] columnIdxes) throws SQLException {1865throw new UnsupportedOperationException("Not supported yet.");1866}18671868@Override1869public void unsetMatchColumn(String columnName) throws SQLException {1870throw new UnsupportedOperationException("Not supported yet.");1871}18721873@Override1874public void unsetMatchColumn(String[] columnName) throws SQLException {1875throw new UnsupportedOperationException("Not supported yet.");1876}18771878}187918801881