Path: blob/master/test/jdk/javax/sql/testng/util/StubBaseRowSet.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.InputStream;25import java.io.Reader;26import java.math.BigDecimal;27import java.sql.Array;28import java.sql.Blob;29import java.sql.Clob;30import java.sql.Date;31import java.sql.NClob;32import java.sql.Ref;33import java.sql.ResultSetMetaData;34import java.sql.RowId;35import java.sql.SQLException;36import java.sql.SQLWarning;37import java.sql.SQLXML;38import java.sql.Statement;39import java.sql.Time;40import java.sql.Timestamp;41import java.util.Calendar;42import java.util.Map;43import javax.sql.RowSet;44import javax.sql.rowset.BaseRowSet;4546public class StubBaseRowSet extends BaseRowSet implements RowSet {4748public StubBaseRowSet() {49super();50// Must call initParams() as part of initialization51super.initParams();52}5354public void notifyCursorMoved() throws SQLException {55super.notifyCursorMoved();56}5758public void notifyRowChanged() throws SQLException {59super.notifyRowChanged();60}6162public void notifyRowSetChanged() throws SQLException {63super.notifyRowSetChanged();64}6566public void initParams() {67super.initParams();68}6970// Methods required by RowSet interace, not used71@Override72public void execute() throws SQLException {73throw new UnsupportedOperationException("Not supported yet.");74}7576@Override77public boolean next() throws SQLException {78throw new UnsupportedOperationException("Not supported yet.");79}8081@Override82public void close() throws SQLException {83throw new UnsupportedOperationException("Not supported yet.");84}8586@Override87public boolean wasNull() throws SQLException {88throw new UnsupportedOperationException("Not supported yet.");89}9091@Override92public String getString(int columnIndex) throws SQLException {93throw new UnsupportedOperationException("Not supported yet.");94}9596@Override97public boolean getBoolean(int columnIndex) throws SQLException {98throw new UnsupportedOperationException("Not supported yet.");99}100101@Override102public byte getByte(int columnIndex) throws SQLException {103throw new UnsupportedOperationException("Not supported yet.");104}105106@Override107public short getShort(int columnIndex) throws SQLException {108throw new UnsupportedOperationException("Not supported yet.");109}110111@Override112public int getInt(int columnIndex) throws SQLException {113throw new UnsupportedOperationException("Not supported yet.");114}115116@Override117public long getLong(int columnIndex) throws SQLException {118throw new UnsupportedOperationException("Not supported yet.");119}120121@Override122public float getFloat(int columnIndex) throws SQLException {123throw new UnsupportedOperationException("Not supported yet.");124}125126@Override127public double getDouble(int columnIndex) throws SQLException {128throw new UnsupportedOperationException("Not supported yet.");129}130131@Override132public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {133throw new UnsupportedOperationException("Not supported yet.");134}135136@Override137public byte[] getBytes(int columnIndex) throws SQLException {138throw new UnsupportedOperationException("Not supported yet.");139}140141@Override142public Date getDate(int columnIndex) throws SQLException {143throw new UnsupportedOperationException("Not supported yet.");144}145146@Override147public Time getTime(int columnIndex) throws SQLException {148throw new UnsupportedOperationException("Not supported yet.");149}150151@Override152public Timestamp getTimestamp(int columnIndex) throws SQLException {153throw new UnsupportedOperationException("Not supported yet.");154}155156@Override157public InputStream getAsciiStream(int columnIndex) throws SQLException {158throw new UnsupportedOperationException("Not supported yet.");159}160161@Override162public InputStream getUnicodeStream(int columnIndex) throws SQLException {163throw new UnsupportedOperationException("Not supported yet.");164}165166@Override167public InputStream getBinaryStream(int columnIndex) throws SQLException {168throw new UnsupportedOperationException("Not supported yet.");169}170171@Override172public String getString(String columnLabel) throws SQLException {173throw new UnsupportedOperationException("Not supported yet.");174}175176@Override177public boolean getBoolean(String columnLabel) throws SQLException {178throw new UnsupportedOperationException("Not supported yet.");179}180181@Override182public byte getByte(String columnLabel) throws SQLException {183throw new UnsupportedOperationException("Not supported yet.");184}185186@Override187public short getShort(String columnLabel) throws SQLException {188throw new UnsupportedOperationException("Not supported yet.");189}190191@Override192public int getInt(String columnLabel) throws SQLException {193throw new UnsupportedOperationException("Not supported yet.");194}195196@Override197public long getLong(String columnLabel) throws SQLException {198throw new UnsupportedOperationException("Not supported yet.");199}200201@Override202public float getFloat(String columnLabel) throws SQLException {203throw new UnsupportedOperationException("Not supported yet.");204}205206@Override207public double getDouble(String columnLabel) throws SQLException {208throw new UnsupportedOperationException("Not supported yet.");209}210211@Override212public BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException {213throw new UnsupportedOperationException("Not supported yet.");214}215216@Override217public byte[] getBytes(String columnLabel) throws SQLException {218throw new UnsupportedOperationException("Not supported yet.");219}220221@Override222public Date getDate(String columnLabel) throws SQLException {223throw new UnsupportedOperationException("Not supported yet.");224}225226@Override227public Time getTime(String columnLabel) throws SQLException {228throw new UnsupportedOperationException("Not supported yet.");229}230231@Override232public Timestamp getTimestamp(String columnLabel) throws SQLException {233throw new UnsupportedOperationException("Not supported yet.");234}235236@Override237public InputStream getAsciiStream(String columnLabel) throws SQLException {238throw new UnsupportedOperationException("Not supported yet.");239}240241@Override242public InputStream getUnicodeStream(String columnLabel) throws SQLException {243throw new UnsupportedOperationException("Not supported yet.");244}245246@Override247public InputStream getBinaryStream(String columnLabel) throws SQLException {248throw new UnsupportedOperationException("Not supported yet.");249}250251@Override252public SQLWarning getWarnings() throws SQLException {253throw new UnsupportedOperationException("Not supported yet.");254}255256@Override257public void clearWarnings() throws SQLException {258throw new UnsupportedOperationException("Not supported yet.");259}260261@Override262public String getCursorName() throws SQLException {263throw new UnsupportedOperationException("Not supported yet.");264}265266@Override267public ResultSetMetaData getMetaData() throws SQLException {268throw new UnsupportedOperationException("Not supported yet.");269}270271@Override272public Object getObject(int columnIndex) throws SQLException {273throw new UnsupportedOperationException("Not supported yet.");274}275276@Override277public Object getObject(String columnLabel) throws SQLException {278throw new UnsupportedOperationException("Not supported yet.");279}280281@Override282public int findColumn(String columnLabel) throws SQLException {283throw new UnsupportedOperationException("Not supported yet.");284}285286@Override287public Reader getCharacterStream(int columnIndex) throws SQLException {288throw new UnsupportedOperationException("Not supported yet.");289}290291@Override292public Reader getCharacterStream(String columnLabel) throws SQLException {293throw new UnsupportedOperationException("Not supported yet.");294}295296@Override297public BigDecimal getBigDecimal(int columnIndex) throws SQLException {298throw new UnsupportedOperationException("Not supported yet.");299}300301@Override302public BigDecimal getBigDecimal(String columnLabel) throws SQLException {303throw new UnsupportedOperationException("Not supported yet.");304}305306@Override307public boolean isBeforeFirst() throws SQLException {308throw new UnsupportedOperationException("Not supported yet.");309}310311@Override312public boolean isAfterLast() throws SQLException {313throw new UnsupportedOperationException("Not supported yet.");314}315316@Override317public boolean isFirst() throws SQLException {318throw new UnsupportedOperationException("Not supported yet.");319}320321@Override322public boolean isLast() throws SQLException {323throw new UnsupportedOperationException("Not supported yet.");324}325326@Override327public void beforeFirst() throws SQLException {328throw new UnsupportedOperationException("Not supported yet.");329}330331@Override332public void afterLast() throws SQLException {333throw new UnsupportedOperationException("Not supported yet.");334}335336@Override337public boolean first() throws SQLException {338throw new UnsupportedOperationException("Not supported yet.");339}340341@Override342public boolean last() throws SQLException {343throw new UnsupportedOperationException("Not supported yet.");344}345346@Override347public int getRow() throws SQLException {348throw new UnsupportedOperationException("Not supported yet.");349}350351@Override352public boolean absolute(int row) throws SQLException {353throw new UnsupportedOperationException("Not supported yet.");354}355356@Override357public boolean relative(int rows) throws SQLException {358throw new UnsupportedOperationException("Not supported yet.");359}360361@Override362public boolean previous() throws SQLException {363throw new UnsupportedOperationException("Not supported yet.");364}365366@Override367public boolean rowUpdated() throws SQLException {368throw new UnsupportedOperationException("Not supported yet.");369}370371@Override372public boolean rowInserted() throws SQLException {373throw new UnsupportedOperationException("Not supported yet.");374}375376@Override377public boolean rowDeleted() throws SQLException {378throw new UnsupportedOperationException("Not supported yet.");379}380381@Override382public void updateNull(int columnIndex) throws SQLException {383throw new UnsupportedOperationException("Not supported yet.");384}385386@Override387public void updateBoolean(int columnIndex, boolean x) throws SQLException {388throw new UnsupportedOperationException("Not supported yet.");389}390391@Override392public void updateByte(int columnIndex, byte x) throws SQLException {393throw new UnsupportedOperationException("Not supported yet.");394}395396@Override397public void updateShort(int columnIndex, short x) throws SQLException {398throw new UnsupportedOperationException("Not supported yet.");399}400401@Override402public void updateInt(int columnIndex, int x) throws SQLException {403throw new UnsupportedOperationException("Not supported yet.");404}405406@Override407public void updateLong(int columnIndex, long x) throws SQLException {408throw new UnsupportedOperationException("Not supported yet.");409}410411@Override412public void updateFloat(int columnIndex, float x) throws SQLException {413throw new UnsupportedOperationException("Not supported yet.");414}415416@Override417public void updateDouble(int columnIndex, double x) throws SQLException {418throw new UnsupportedOperationException("Not supported yet.");419}420421@Override422public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {423throw new UnsupportedOperationException("Not supported yet.");424}425426@Override427public void updateString(int columnIndex, String x) throws SQLException {428throw new UnsupportedOperationException("Not supported yet.");429}430431@Override432public void updateBytes(int columnIndex, byte[] x) throws SQLException {433throw new UnsupportedOperationException("Not supported yet.");434}435436@Override437public void updateDate(int columnIndex, Date x) throws SQLException {438throw new UnsupportedOperationException("Not supported yet.");439}440441@Override442public void updateTime(int columnIndex, Time x) throws SQLException {443throw new UnsupportedOperationException("Not supported yet.");444}445446@Override447public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {448throw new UnsupportedOperationException("Not supported yet.");449}450451@Override452public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {453throw new UnsupportedOperationException("Not supported yet.");454}455456@Override457public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {458throw new UnsupportedOperationException("Not supported yet.");459}460461@Override462public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {463throw new UnsupportedOperationException("Not supported yet.");464}465466@Override467public void updateObject(int columnIndex, Object x, int scaleOrLength) throws SQLException {468throw new UnsupportedOperationException("Not supported yet.");469}470471@Override472public void updateObject(int columnIndex, Object x) throws SQLException {473throw new UnsupportedOperationException("Not supported yet.");474}475476@Override477public void updateNull(String columnLabel) throws SQLException {478throw new UnsupportedOperationException("Not supported yet.");479}480481@Override482public void updateBoolean(String columnLabel, boolean x) throws SQLException {483throw new UnsupportedOperationException("Not supported yet.");484}485486@Override487public void updateByte(String columnLabel, byte x) throws SQLException {488throw new UnsupportedOperationException("Not supported yet.");489}490491@Override492public void updateShort(String columnLabel, short x) throws SQLException {493throw new UnsupportedOperationException("Not supported yet.");494}495496@Override497public void updateInt(String columnLabel, int x) throws SQLException {498throw new UnsupportedOperationException("Not supported yet.");499}500501@Override502public void updateLong(String columnLabel, long x) throws SQLException {503throw new UnsupportedOperationException("Not supported yet.");504}505506@Override507public void updateFloat(String columnLabel, float x) throws SQLException {508throw new UnsupportedOperationException("Not supported yet.");509}510511@Override512public void updateDouble(String columnLabel, double x) throws SQLException {513throw new UnsupportedOperationException("Not supported yet.");514}515516@Override517public void updateBigDecimal(String columnLabel, BigDecimal x) throws SQLException {518throw new UnsupportedOperationException("Not supported yet.");519}520521@Override522public void updateString(String columnLabel, String x) throws SQLException {523throw new UnsupportedOperationException("Not supported yet.");524}525526@Override527public void updateBytes(String columnLabel, byte[] x) throws SQLException {528throw new UnsupportedOperationException("Not supported yet.");529}530531@Override532public void updateDate(String columnLabel, Date x) throws SQLException {533throw new UnsupportedOperationException("Not supported yet.");534}535536@Override537public void updateTime(String columnLabel, Time x) throws SQLException {538throw new UnsupportedOperationException("Not supported yet.");539}540541@Override542public void updateTimestamp(String columnLabel, Timestamp x) throws SQLException {543throw new UnsupportedOperationException("Not supported yet.");544}545546@Override547public void updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException {548throw new UnsupportedOperationException("Not supported yet.");549}550551@Override552public void updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException {553throw new UnsupportedOperationException("Not supported yet.");554}555556@Override557public void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException {558throw new UnsupportedOperationException("Not supported yet.");559}560561@Override562public void updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException {563throw new UnsupportedOperationException("Not supported yet.");564}565566@Override567public void updateObject(String columnLabel, Object x) throws SQLException {568throw new UnsupportedOperationException("Not supported yet.");569}570571@Override572public void insertRow() throws SQLException {573throw new UnsupportedOperationException("Not supported yet.");574}575576@Override577public void updateRow() throws SQLException {578throw new UnsupportedOperationException("Not supported yet.");579}580581@Override582public void deleteRow() throws SQLException {583throw new UnsupportedOperationException("Not supported yet.");584}585586@Override587public void refreshRow() throws SQLException {588throw new UnsupportedOperationException("Not supported yet.");589}590591@Override592public void cancelRowUpdates() throws SQLException {593throw new UnsupportedOperationException("Not supported yet.");594}595596@Override597public void moveToInsertRow() throws SQLException {598throw new UnsupportedOperationException("Not supported yet.");599}600601@Override602public void moveToCurrentRow() throws SQLException {603throw new UnsupportedOperationException("Not supported yet.");604}605606@Override607public Statement getStatement() throws SQLException {608throw new UnsupportedOperationException("Not supported yet.");609}610611@Override612public Object getObject(int columnIndex, Map<String, Class<?>> map) throws SQLException {613throw new UnsupportedOperationException("Not supported yet.");614}615616@Override617public Ref getRef(int columnIndex) throws SQLException {618throw new UnsupportedOperationException("Not supported yet.");619}620621@Override622public Blob getBlob(int columnIndex) throws SQLException {623throw new UnsupportedOperationException("Not supported yet.");624}625626@Override627public Clob getClob(int columnIndex) throws SQLException {628throw new UnsupportedOperationException("Not supported yet.");629}630631@Override632public Array getArray(int columnIndex) throws SQLException {633throw new UnsupportedOperationException("Not supported yet.");634}635636@Override637public Object getObject(String columnLabel, Map<String, Class<?>> map) throws SQLException {638throw new UnsupportedOperationException("Not supported yet.");639}640641@Override642public Ref getRef(String columnLabel) throws SQLException {643throw new UnsupportedOperationException("Not supported yet.");644}645646@Override647public Blob getBlob(String columnLabel) throws SQLException {648throw new UnsupportedOperationException("Not supported yet.");649}650651@Override652public Clob getClob(String columnLabel) throws SQLException {653throw new UnsupportedOperationException("Not supported yet.");654}655656@Override657public Array getArray(String columnLabel) throws SQLException {658throw new UnsupportedOperationException("Not supported yet.");659}660661@Override662public Date getDate(int columnIndex, Calendar cal) throws SQLException {663throw new UnsupportedOperationException("Not supported yet.");664}665666@Override667public Date getDate(String columnLabel, Calendar cal) throws SQLException {668throw new UnsupportedOperationException("Not supported yet.");669}670671@Override672public Time getTime(int columnIndex, Calendar cal) throws SQLException {673throw new UnsupportedOperationException("Not supported yet.");674}675676@Override677public Time getTime(String columnLabel, Calendar cal) throws SQLException {678throw new UnsupportedOperationException("Not supported yet.");679}680681@Override682public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {683throw new UnsupportedOperationException("Not supported yet.");684}685686@Override687public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException {688throw new UnsupportedOperationException("Not supported yet.");689}690691@Override692public java.net.URL getURL(int columnIndex) throws SQLException {693throw new UnsupportedOperationException("Not supported yet.");694}695696@Override697public java.net.URL getURL(String columnLabel) throws SQLException {698throw new UnsupportedOperationException("Not supported yet.");699}700701@Override702public void updateRef(int columnIndex, Ref x) throws SQLException {703throw new UnsupportedOperationException("Not supported yet.");704}705706@Override707public void updateRef(String columnLabel, Ref x) throws SQLException {708throw new UnsupportedOperationException("Not supported yet.");709}710711@Override712public void updateBlob(int columnIndex, Blob x) throws SQLException {713throw new UnsupportedOperationException("Not supported yet.");714}715716@Override717public void updateBlob(String columnLabel, Blob x) throws SQLException {718throw new UnsupportedOperationException("Not supported yet.");719}720721@Override722public void updateClob(int columnIndex, Clob x) throws SQLException {723throw new UnsupportedOperationException("Not supported yet.");724}725726@Override727public void updateClob(String columnLabel, Clob x) throws SQLException {728throw new UnsupportedOperationException("Not supported yet.");729}730731@Override732public void updateArray(int columnIndex, Array x) throws SQLException {733throw new UnsupportedOperationException("Not supported yet.");734}735736@Override737public void updateArray(String columnLabel, Array x) throws SQLException {738throw new UnsupportedOperationException("Not supported yet.");739}740741@Override742public RowId getRowId(int columnIndex) throws SQLException {743throw new UnsupportedOperationException("Not supported yet.");744}745746@Override747public RowId getRowId(String columnLabel) throws SQLException {748throw new UnsupportedOperationException("Not supported yet.");749}750751@Override752public void updateRowId(int columnIndex, RowId x) throws SQLException {753throw new UnsupportedOperationException("Not supported yet.");754}755756@Override757public void updateRowId(String columnLabel, RowId x) throws SQLException {758throw new UnsupportedOperationException("Not supported yet.");759}760761@Override762public int getHoldability() throws SQLException {763throw new UnsupportedOperationException("Not supported yet.");764}765766@Override767public boolean isClosed() throws SQLException {768throw new UnsupportedOperationException("Not supported yet.");769}770771@Override772public void updateNString(int columnIndex, String nString) throws SQLException {773throw new UnsupportedOperationException("Not supported yet.");774}775776@Override777public void updateNString(String columnLabel, String nString) throws SQLException {778throw new UnsupportedOperationException("Not supported yet.");779}780781@Override782public void updateNClob(int columnIndex, NClob nClob) throws SQLException {783throw new UnsupportedOperationException("Not supported yet.");784}785786@Override787public void updateNClob(String columnLabel, NClob nClob) throws SQLException {788throw new UnsupportedOperationException("Not supported yet.");789}790791@Override792public NClob getNClob(int columnIndex) throws SQLException {793throw new UnsupportedOperationException("Not supported yet.");794}795796@Override797public NClob getNClob(String columnLabel) throws SQLException {798throw new UnsupportedOperationException("Not supported yet.");799}800801@Override802public SQLXML getSQLXML(int columnIndex) throws SQLException {803throw new UnsupportedOperationException("Not supported yet.");804}805806@Override807public SQLXML getSQLXML(String columnLabel) throws SQLException {808throw new UnsupportedOperationException("Not supported yet.");809}810811@Override812public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException {813throw new UnsupportedOperationException("Not supported yet.");814}815816@Override817public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException {818throw new UnsupportedOperationException("Not supported yet.");819}820821@Override822public String getNString(int columnIndex) throws SQLException {823throw new UnsupportedOperationException("Not supported yet.");824}825826@Override827public String getNString(String columnLabel) throws SQLException {828throw new UnsupportedOperationException("Not supported yet.");829}830831@Override832public Reader getNCharacterStream(int columnIndex) throws SQLException {833throw new UnsupportedOperationException("Not supported yet.");834}835836@Override837public Reader getNCharacterStream(String columnLabel) throws SQLException {838throw new UnsupportedOperationException("Not supported yet.");839}840841@Override842public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException {843throw new UnsupportedOperationException("Not supported yet.");844}845846@Override847public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {848throw new UnsupportedOperationException("Not supported yet.");849}850851@Override852public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException {853throw new UnsupportedOperationException("Not supported yet.");854}855856@Override857public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {858throw new UnsupportedOperationException("Not supported yet.");859}860861@Override862public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {863throw new UnsupportedOperationException("Not supported yet.");864}865866@Override867public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException {868throw new UnsupportedOperationException("Not supported yet.");869}870871@Override872public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException {873throw new UnsupportedOperationException("Not supported yet.");874}875876@Override877public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {878throw new UnsupportedOperationException("Not supported yet.");879}880881@Override882public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException {883throw new UnsupportedOperationException("Not supported yet.");884}885886@Override887public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException {888throw new UnsupportedOperationException("Not supported yet.");889}890891@Override892public void updateClob(int columnIndex, Reader reader, long length) throws SQLException {893throw new UnsupportedOperationException("Not supported yet.");894}895896@Override897public void updateClob(String columnLabel, Reader reader, long length) throws SQLException {898throw new UnsupportedOperationException("Not supported yet.");899}900901@Override902public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException {903throw new UnsupportedOperationException("Not supported yet.");904}905906@Override907public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException {908throw new UnsupportedOperationException("Not supported yet.");909}910911@Override912public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException {913throw new UnsupportedOperationException("Not supported yet.");914}915916@Override917public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException {918throw new UnsupportedOperationException("Not supported yet.");919}920921@Override922public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException {923throw new UnsupportedOperationException("Not supported yet.");924}925926@Override927public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException {928throw new UnsupportedOperationException("Not supported yet.");929}930931@Override932public void updateCharacterStream(int columnIndex, Reader x) throws SQLException {933throw new UnsupportedOperationException("Not supported yet.");934}935936@Override937public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException {938throw new UnsupportedOperationException("Not supported yet.");939}940941@Override942public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException {943throw new UnsupportedOperationException("Not supported yet.");944}945946@Override947public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException {948throw new UnsupportedOperationException("Not supported yet.");949}950951@Override952public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException {953throw new UnsupportedOperationException("Not supported yet.");954}955956@Override957public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException {958throw new UnsupportedOperationException("Not supported yet.");959}960961@Override962public void updateClob(int columnIndex, Reader reader) throws SQLException {963throw new UnsupportedOperationException("Not supported yet.");964}965966@Override967public void updateClob(String columnLabel, Reader reader) throws SQLException {968throw new UnsupportedOperationException("Not supported yet.");969}970971@Override972public void updateNClob(int columnIndex, Reader reader) throws SQLException {973throw new UnsupportedOperationException("Not supported yet.");974}975976@Override977public void updateNClob(String columnLabel, Reader reader) throws SQLException {978throw new UnsupportedOperationException("Not supported yet.");979}980981@Override982public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {983throw new UnsupportedOperationException("Not supported yet.");984}985986@Override987public <T> T getObject(String columnLabel, Class<T> type) throws SQLException {988throw new UnsupportedOperationException("Not supported yet.");989}990991@Override992public <T> T unwrap(Class<T> iface) throws SQLException {993throw new UnsupportedOperationException("Not supported yet.");994}995996@Override997public boolean isWrapperFor(Class<?> iface) throws SQLException {998throw new UnsupportedOperationException("Not supported yet.");999}1000}100110021003