Path: blob/master/test/jdk/javax/sql/testng/util/StubJoinRowSetImpl.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.JoinRowSet;57import javax.sql.rowset.Joinable;58import javax.sql.rowset.RowSetWarning;59import javax.sql.rowset.spi.SyncProvider;60import javax.sql.rowset.spi.SyncProviderException;6162class StubJoinRowSetImpl implements JoinRowSet {6364public StubJoinRowSetImpl() {65}6667@Override68public void addRowSet(Joinable rowset) throws SQLException {69throw new UnsupportedOperationException("Not supported yet.");70}7172@Override73public void addRowSet(RowSet rowset, int columnIdx) throws SQLException {74throw new UnsupportedOperationException("Not supported yet.");75}7677@Override78public void addRowSet(RowSet rowset, String columnName) throws SQLException {79throw new UnsupportedOperationException("Not supported yet.");80}8182@Override83public void addRowSet(RowSet[] rowset, int[] columnIdx) throws SQLException {84throw new UnsupportedOperationException("Not supported yet.");85}8687@Override88public void addRowSet(RowSet[] rowset, String[] columnName) throws SQLException {89throw new UnsupportedOperationException("Not supported yet.");90}9192@Override93public Collection<?> getRowSets() throws SQLException {94throw new UnsupportedOperationException("Not supported yet.");95}9697@Override98public String[] getRowSetNames() throws SQLException {99throw new UnsupportedOperationException("Not supported yet.");100}101102@Override103public CachedRowSet toCachedRowSet() throws SQLException {104throw new UnsupportedOperationException("Not supported yet.");105}106107@Override108public boolean supportsCrossJoin() {109throw new UnsupportedOperationException("Not supported yet.");110}111112@Override113public boolean supportsInnerJoin() {114throw new UnsupportedOperationException("Not supported yet.");115}116117@Override118public boolean supportsLeftOuterJoin() {119throw new UnsupportedOperationException("Not supported yet.");120}121122@Override123public boolean supportsRightOuterJoin() {124throw new UnsupportedOperationException("Not supported yet.");125}126127@Override128public boolean supportsFullJoin() {129throw new UnsupportedOperationException("Not supported yet.");130}131132@Override133public void setJoinType(int joinType) throws SQLException {134throw new UnsupportedOperationException("Not supported yet.");135}136137@Override138public String getWhereClause() throws SQLException {139throw new UnsupportedOperationException("Not supported yet.");140}141142@Override143public int getJoinType() throws SQLException {144throw new UnsupportedOperationException("Not supported yet.");145}146147@Override148public void readXml(Reader reader) throws SQLException {149throw new UnsupportedOperationException("Not supported yet.");150}151152@Override153public void readXml(InputStream iStream) throws SQLException, IOException {154throw new UnsupportedOperationException("Not supported yet.");155}156157@Override158public void writeXml(ResultSet rs, Writer writer) throws SQLException {159throw new UnsupportedOperationException("Not supported yet.");160}161162@Override163public void writeXml(ResultSet rs, OutputStream oStream) throws SQLException, IOException {164throw new UnsupportedOperationException("Not supported yet.");165}166167@Override168public void writeXml(Writer writer) throws SQLException {169throw new UnsupportedOperationException("Not supported yet.");170}171172@Override173public void writeXml(OutputStream oStream) throws SQLException, IOException {174throw new UnsupportedOperationException("Not supported yet.");175}176177@Override178public void populate(ResultSet data) throws SQLException {179throw new UnsupportedOperationException("Not supported yet.");180}181182@Override183public void execute(Connection conn) throws SQLException {184throw new UnsupportedOperationException("Not supported yet.");185}186187@Override188public void acceptChanges() throws SyncProviderException {189throw new UnsupportedOperationException("Not supported yet.");190}191192@Override193public void acceptChanges(Connection con) throws SyncProviderException {194throw new UnsupportedOperationException("Not supported yet.");195}196197@Override198public void restoreOriginal() throws SQLException {199throw new UnsupportedOperationException("Not supported yet.");200}201202@Override203public void release() throws SQLException {204throw new UnsupportedOperationException("Not supported yet.");205}206207@Override208public void undoDelete() throws SQLException {209throw new UnsupportedOperationException("Not supported yet.");210}211212@Override213public void undoInsert() throws SQLException {214throw new UnsupportedOperationException("Not supported yet.");215}216217@Override218public void undoUpdate() throws SQLException {219throw new UnsupportedOperationException("Not supported yet.");220}221222@Override223public boolean columnUpdated(int idx) throws SQLException {224throw new UnsupportedOperationException("Not supported yet.");225}226227@Override228public boolean columnUpdated(String columnName) throws SQLException {229throw new UnsupportedOperationException("Not supported yet.");230}231232@Override233public Collection<?> toCollection() throws SQLException {234throw new UnsupportedOperationException("Not supported yet.");235}236237@Override238public Collection<?> toCollection(int column) throws SQLException {239throw new UnsupportedOperationException("Not supported yet.");240}241242@Override243public Collection<?> toCollection(String column) throws SQLException {244throw new UnsupportedOperationException("Not supported yet.");245}246247@Override248public SyncProvider getSyncProvider() throws SQLException {249throw new UnsupportedOperationException("Not supported yet.");250}251252@Override253public void setSyncProvider(String provider) throws SQLException {254throw new UnsupportedOperationException("Not supported yet.");255}256257@Override258public int size() {259throw new UnsupportedOperationException("Not supported yet.");260}261262@Override263public void setMetaData(RowSetMetaData md) throws SQLException {264throw new UnsupportedOperationException("Not supported yet.");265}266267@Override268public ResultSet getOriginal() throws SQLException {269throw new UnsupportedOperationException("Not supported yet.");270}271272@Override273public ResultSet getOriginalRow() throws SQLException {274throw new UnsupportedOperationException("Not supported yet.");275}276277@Override278public void setOriginalRow() throws SQLException {279throw new UnsupportedOperationException("Not supported yet.");280}281282@Override283public String getTableName() throws SQLException {284throw new UnsupportedOperationException("Not supported yet.");285}286287@Override288public void setTableName(String tabName) throws SQLException {289throw new UnsupportedOperationException("Not supported yet.");290}291292@Override293public int[] getKeyColumns() throws SQLException {294throw new UnsupportedOperationException("Not supported yet.");295}296297@Override298public void setKeyColumns(int[] keys) throws SQLException {299throw new UnsupportedOperationException("Not supported yet.");300}301302@Override303public RowSet createShared() throws SQLException {304throw new UnsupportedOperationException("Not supported yet.");305}306307@Override308public CachedRowSet createCopy() throws SQLException {309throw new UnsupportedOperationException("Not supported yet.");310}311312@Override313public CachedRowSet createCopySchema() throws SQLException {314throw new UnsupportedOperationException("Not supported yet.");315}316317@Override318public CachedRowSet createCopyNoConstraints() throws SQLException {319throw new UnsupportedOperationException("Not supported yet.");320}321322@Override323public RowSetWarning getRowSetWarnings() throws SQLException {324throw new UnsupportedOperationException("Not supported yet.");325}326327@Override328public boolean getShowDeleted() throws SQLException {329throw new UnsupportedOperationException("Not supported yet.");330}331332@Override333public void setShowDeleted(boolean b) throws SQLException {334throw new UnsupportedOperationException("Not supported yet.");335}336337@Override338public void commit() throws SQLException {339throw new UnsupportedOperationException("Not supported yet.");340}341342@Override343public void rollback() throws SQLException {344throw new UnsupportedOperationException("Not supported yet.");345}346347@Override348public void rollback(Savepoint s) throws SQLException {349throw new UnsupportedOperationException("Not supported yet.");350}351352@Override353public void rowSetPopulated(RowSetEvent event, int numRows) throws SQLException {354throw new UnsupportedOperationException("Not supported yet.");355}356357@Override358public void populate(ResultSet rs, int startRow) throws SQLException {359throw new UnsupportedOperationException("Not supported yet.");360}361362@Override363public void setPageSize(int size) throws SQLException {364throw new UnsupportedOperationException("Not supported yet.");365}366367@Override368public int getPageSize() {369throw new UnsupportedOperationException("Not supported yet.");370}371372@Override373public boolean nextPage() throws SQLException {374throw new UnsupportedOperationException("Not supported yet.");375}376377@Override378public boolean previousPage() throws SQLException {379throw new UnsupportedOperationException("Not supported yet.");380}381382@Override383public String getUrl() throws SQLException {384throw new UnsupportedOperationException("Not supported yet.");385}386387@Override388public void setUrl(String url) throws SQLException {389throw new UnsupportedOperationException("Not supported yet.");390}391392@Override393public String getDataSourceName() {394throw new UnsupportedOperationException("Not supported yet.");395}396397@Override398public void setDataSourceName(String name) throws SQLException {399throw new UnsupportedOperationException("Not supported yet.");400}401402@Override403public String getUsername() {404throw new UnsupportedOperationException("Not supported yet.");405}406407@Override408public void setUsername(String name) throws SQLException {409throw new UnsupportedOperationException("Not supported yet.");410}411412@Override413public String getPassword() {414throw new UnsupportedOperationException("Not supported yet.");415}416417@Override418public void setPassword(String password) throws SQLException {419throw new UnsupportedOperationException("Not supported yet.");420}421422@Override423public int getTransactionIsolation() {424throw new UnsupportedOperationException("Not supported yet.");425}426427@Override428public void setTransactionIsolation(int level) throws SQLException {429throw new UnsupportedOperationException("Not supported yet.");430}431432@Override433public Map<String, Class<?>> getTypeMap() throws SQLException {434throw new UnsupportedOperationException("Not supported yet.");435}436437@Override438public void setTypeMap(Map<String, Class<?>> map) throws SQLException {439throw new UnsupportedOperationException("Not supported yet.");440}441442@Override443public String getCommand() {444throw new UnsupportedOperationException("Not supported yet.");445}446447@Override448public void setCommand(String cmd) throws SQLException {449throw new UnsupportedOperationException("Not supported yet.");450}451452@Override453public boolean isReadOnly() {454throw new UnsupportedOperationException("Not supported yet.");455}456457@Override458public void setReadOnly(boolean value) throws SQLException {459throw new UnsupportedOperationException("Not supported yet.");460}461462@Override463public int getMaxFieldSize() throws SQLException {464throw new UnsupportedOperationException("Not supported yet.");465}466467@Override468public void setMaxFieldSize(int max) throws SQLException {469throw new UnsupportedOperationException("Not supported yet.");470}471472@Override473public int getMaxRows() throws SQLException {474throw new UnsupportedOperationException("Not supported yet.");475}476477@Override478public void setMaxRows(int max) throws SQLException {479throw new UnsupportedOperationException("Not supported yet.");480}481482@Override483public boolean getEscapeProcessing() throws SQLException {484throw new UnsupportedOperationException("Not supported yet.");485}486487@Override488public void setEscapeProcessing(boolean enable) throws SQLException {489throw new UnsupportedOperationException("Not supported yet.");490}491492@Override493public int getQueryTimeout() throws SQLException {494throw new UnsupportedOperationException("Not supported yet.");495}496497@Override498public void setQueryTimeout(int seconds) throws SQLException {499throw new UnsupportedOperationException("Not supported yet.");500}501502@Override503public void setType(int type) throws SQLException {504throw new UnsupportedOperationException("Not supported yet.");505}506507@Override508public void setConcurrency(int concurrency) throws SQLException {509throw new UnsupportedOperationException("Not supported yet.");510}511512@Override513public void setNull(int parameterIndex, int sqlType) throws SQLException {514throw new UnsupportedOperationException("Not supported yet.");515}516517@Override518public void setNull(String parameterName, int sqlType) throws SQLException {519throw new UnsupportedOperationException("Not supported yet.");520}521522@Override523public void setNull(int paramIndex, int sqlType, String typeName) throws SQLException {524throw new UnsupportedOperationException("Not supported yet.");525}526527@Override528public void setNull(String parameterName, int sqlType, String typeName) throws SQLException {529throw new UnsupportedOperationException("Not supported yet.");530}531532@Override533public void setBoolean(int parameterIndex, boolean x) throws SQLException {534throw new UnsupportedOperationException("Not supported yet.");535}536537@Override538public void setBoolean(String parameterName, boolean x) throws SQLException {539throw new UnsupportedOperationException("Not supported yet.");540}541542@Override543public void setByte(int parameterIndex, byte x) throws SQLException {544throw new UnsupportedOperationException("Not supported yet.");545}546547@Override548public void setByte(String parameterName, byte x) throws SQLException {549throw new UnsupportedOperationException("Not supported yet.");550}551552@Override553public void setShort(int parameterIndex, short x) throws SQLException {554throw new UnsupportedOperationException("Not supported yet.");555}556557@Override558public void setShort(String parameterName, short x) throws SQLException {559throw new UnsupportedOperationException("Not supported yet.");560}561562@Override563public void setInt(int parameterIndex, int x) throws SQLException {564throw new UnsupportedOperationException("Not supported yet.");565}566567@Override568public void setInt(String parameterName, int x) throws SQLException {569throw new UnsupportedOperationException("Not supported yet.");570}571572@Override573public void setLong(int parameterIndex, long x) throws SQLException {574throw new UnsupportedOperationException("Not supported yet.");575}576577@Override578public void setLong(String parameterName, long x) throws SQLException {579throw new UnsupportedOperationException("Not supported yet.");580}581582@Override583public void setFloat(int parameterIndex, float x) throws SQLException {584throw new UnsupportedOperationException("Not supported yet.");585}586587@Override588public void setFloat(String parameterName, float x) throws SQLException {589throw new UnsupportedOperationException("Not supported yet.");590}591592@Override593public void setDouble(int parameterIndex, double x) throws SQLException {594throw new UnsupportedOperationException("Not supported yet.");595}596597@Override598public void setDouble(String parameterName, double x) throws SQLException {599throw new UnsupportedOperationException("Not supported yet.");600}601602@Override603public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException {604throw new UnsupportedOperationException("Not supported yet.");605}606607@Override608public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException {609throw new UnsupportedOperationException("Not supported yet.");610}611612@Override613public void setString(int parameterIndex, String x) throws SQLException {614throw new UnsupportedOperationException("Not supported yet.");615}616617@Override618public void setString(String parameterName, String x) throws SQLException {619throw new UnsupportedOperationException("Not supported yet.");620}621622@Override623public void setBytes(int parameterIndex, byte[] x) throws SQLException {624throw new UnsupportedOperationException("Not supported yet.");625}626627@Override628public void setBytes(String parameterName, byte[] x) throws SQLException {629throw new UnsupportedOperationException("Not supported yet.");630}631632@Override633public void setDate(int parameterIndex, Date x) throws SQLException {634throw new UnsupportedOperationException("Not supported yet.");635}636637@Override638public void setTime(int parameterIndex, Time x) throws SQLException {639throw new UnsupportedOperationException("Not supported yet.");640}641642@Override643public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException {644throw new UnsupportedOperationException("Not supported yet.");645}646647@Override648public void setTimestamp(String parameterName, Timestamp x) throws SQLException {649throw new UnsupportedOperationException("Not supported yet.");650}651652@Override653public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException {654throw new UnsupportedOperationException("Not supported yet.");655}656657@Override658public void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException {659throw new UnsupportedOperationException("Not supported yet.");660}661662@Override663public void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException {664throw new UnsupportedOperationException("Not supported yet.");665}666667@Override668public void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException {669throw new UnsupportedOperationException("Not supported yet.");670}671672@Override673public void setCharacterStream(int parameterIndex, Reader reader, int length) throws SQLException {674throw new UnsupportedOperationException("Not supported yet.");675}676677@Override678public void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException {679throw new UnsupportedOperationException("Not supported yet.");680}681682@Override683public void setAsciiStream(int parameterIndex, InputStream x) throws SQLException {684throw new UnsupportedOperationException("Not supported yet.");685}686687@Override688public void setAsciiStream(String parameterName, InputStream x) throws SQLException {689throw new UnsupportedOperationException("Not supported yet.");690}691692@Override693public void setBinaryStream(int parameterIndex, InputStream x) throws SQLException {694throw new UnsupportedOperationException("Not supported yet.");695}696697@Override698public void setBinaryStream(String parameterName, InputStream x) throws SQLException {699throw new UnsupportedOperationException("Not supported yet.");700}701702@Override703public void setCharacterStream(int parameterIndex, Reader reader) throws SQLException {704throw new UnsupportedOperationException("Not supported yet.");705}706707@Override708public void setCharacterStream(String parameterName, Reader reader) throws SQLException {709throw new UnsupportedOperationException("Not supported yet.");710}711712@Override713public void setNCharacterStream(int parameterIndex, Reader value) throws SQLException {714throw new UnsupportedOperationException("Not supported yet.");715}716717@Override718public void setObject(int parameterIndex, Object x, int targetSqlType, int scaleOrLength) throws SQLException {719throw new UnsupportedOperationException("Not supported yet.");720}721722@Override723public void setObject(String parameterName, Object x, int targetSqlType, int scale) throws SQLException {724throw new UnsupportedOperationException("Not supported yet.");725}726727@Override728public void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException {729throw new UnsupportedOperationException("Not supported yet.");730}731732@Override733public void setObject(String parameterName, Object x, int targetSqlType) throws SQLException {734throw new UnsupportedOperationException("Not supported yet.");735}736737@Override738public void setObject(String parameterName, Object x) throws SQLException {739throw new UnsupportedOperationException("Not supported yet.");740}741742@Override743public void setObject(int parameterIndex, Object x) throws SQLException {744throw new UnsupportedOperationException("Not supported yet.");745}746747@Override748public void setRef(int i, Ref x) throws SQLException {749throw new UnsupportedOperationException("Not supported yet.");750}751752@Override753public void setBlob(int i, Blob x) throws SQLException {754throw new UnsupportedOperationException("Not supported yet.");755}756757@Override758public void setBlob(int parameterIndex, InputStream inputStream, long length) throws SQLException {759throw new UnsupportedOperationException("Not supported yet.");760}761762@Override763public void setBlob(int parameterIndex, InputStream inputStream) throws SQLException {764throw new UnsupportedOperationException("Not supported yet.");765}766767@Override768public void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException {769throw new UnsupportedOperationException("Not supported yet.");770}771772@Override773public void setBlob(String parameterName, Blob x) throws SQLException {774throw new UnsupportedOperationException("Not supported yet.");775}776777@Override778public void setBlob(String parameterName, InputStream inputStream) throws SQLException {779throw new UnsupportedOperationException("Not supported yet.");780}781782@Override783public void setClob(int i, Clob x) throws SQLException {784throw new UnsupportedOperationException("Not supported yet.");785}786787@Override788public void setClob(int parameterIndex, Reader reader, long length) throws SQLException {789throw new UnsupportedOperationException("Not supported yet.");790}791792@Override793public void setClob(int parameterIndex, Reader reader) throws SQLException {794throw new UnsupportedOperationException("Not supported yet.");795}796797@Override798public void setClob(String parameterName, Reader reader, long length) throws SQLException {799throw new UnsupportedOperationException("Not supported yet.");800}801802@Override803public void setClob(String parameterName, Clob x) throws SQLException {804throw new UnsupportedOperationException("Not supported yet.");805}806807@Override808public void setClob(String parameterName, Reader reader) throws SQLException {809throw new UnsupportedOperationException("Not supported yet.");810}811812@Override813public void setArray(int i, Array x) throws SQLException {814throw new UnsupportedOperationException("Not supported yet.");815}816817@Override818public void setDate(int parameterIndex, Date x, Calendar cal) throws SQLException {819throw new UnsupportedOperationException("Not supported yet.");820}821822@Override823public void setDate(String parameterName, Date x) throws SQLException {824throw new UnsupportedOperationException("Not supported yet.");825}826827@Override828public void setDate(String parameterName, Date x, Calendar cal) throws SQLException {829throw new UnsupportedOperationException("Not supported yet.");830}831832@Override833public void setTime(int parameterIndex, Time x, Calendar cal) throws SQLException {834throw new UnsupportedOperationException("Not supported yet.");835}836837@Override838public void setTime(String parameterName, Time x) throws SQLException {839throw new UnsupportedOperationException("Not supported yet.");840}841842@Override843public void setTime(String parameterName, Time x, Calendar cal) throws SQLException {844throw new UnsupportedOperationException("Not supported yet.");845}846847@Override848public void setTimestamp(int parameterIndex, Timestamp x, Calendar cal) throws SQLException {849throw new UnsupportedOperationException("Not supported yet.");850}851852@Override853public void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException {854throw new UnsupportedOperationException("Not supported yet.");855}856857@Override858public void clearParameters() throws SQLException {859throw new UnsupportedOperationException("Not supported yet.");860}861862@Override863public void execute() throws SQLException {864throw new UnsupportedOperationException("Not supported yet.");865}866867@Override868public void addRowSetListener(RowSetListener listener) {869throw new UnsupportedOperationException("Not supported yet.");870}871872@Override873public void removeRowSetListener(RowSetListener listener) {874throw new UnsupportedOperationException("Not supported yet.");875}876877@Override878public void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException {879throw new UnsupportedOperationException("Not supported yet.");880}881882@Override883public void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException {884throw new UnsupportedOperationException("Not supported yet.");885}886887@Override888public void setRowId(int parameterIndex, RowId x) throws SQLException {889throw new UnsupportedOperationException("Not supported yet.");890}891892@Override893public void setRowId(String parameterName, RowId x) throws SQLException {894throw new UnsupportedOperationException("Not supported yet.");895}896897@Override898public void setNString(int parameterIndex, String value) throws SQLException {899throw new UnsupportedOperationException("Not supported yet.");900}901902@Override903public void setNString(String parameterName, String value) throws SQLException {904throw new UnsupportedOperationException("Not supported yet.");905}906907@Override908public void setNCharacterStream(int parameterIndex, Reader value, long length) throws SQLException {909throw new UnsupportedOperationException("Not supported yet.");910}911912@Override913public void setNCharacterStream(String parameterName, Reader value, long length) throws SQLException {914throw new UnsupportedOperationException("Not supported yet.");915}916917@Override918public void setNCharacterStream(String parameterName, Reader value) throws SQLException {919throw new UnsupportedOperationException("Not supported yet.");920}921922@Override923public void setNClob(String parameterName, NClob value) throws SQLException {924throw new UnsupportedOperationException("Not supported yet.");925}926927@Override928public void setNClob(String parameterName, Reader reader, long length) throws SQLException {929throw new UnsupportedOperationException("Not supported yet.");930}931932@Override933public void setNClob(String parameterName, Reader reader) throws SQLException {934throw new UnsupportedOperationException("Not supported yet.");935}936937@Override938public void setNClob(int parameterIndex, Reader reader, long length) throws SQLException {939throw new UnsupportedOperationException("Not supported yet.");940}941942@Override943public void setNClob(int parameterIndex, NClob value) throws SQLException {944throw new UnsupportedOperationException("Not supported yet.");945}946947@Override948public void setNClob(int parameterIndex, Reader reader) throws SQLException {949throw new UnsupportedOperationException("Not supported yet.");950}951952@Override953public void setURL(int parameterIndex, URL x) throws SQLException {954throw new UnsupportedOperationException("Not supported yet.");955}956957@Override958public boolean next() throws SQLException {959throw new UnsupportedOperationException("Not supported yet.");960}961962@Override963public void close() throws SQLException {964throw new UnsupportedOperationException("Not supported yet.");965}966967@Override968public boolean wasNull() throws SQLException {969throw new UnsupportedOperationException("Not supported yet.");970}971972@Override973public String getString(int columnIndex) throws SQLException {974throw new UnsupportedOperationException("Not supported yet.");975}976977@Override978public boolean getBoolean(int columnIndex) throws SQLException {979throw new UnsupportedOperationException("Not supported yet.");980}981982@Override983public byte getByte(int columnIndex) throws SQLException {984throw new UnsupportedOperationException("Not supported yet.");985}986987@Override988public short getShort(int columnIndex) throws SQLException {989throw new UnsupportedOperationException("Not supported yet.");990}991992@Override993public int getInt(int columnIndex) throws SQLException {994throw new UnsupportedOperationException("Not supported yet.");995}996997@Override998public long getLong(int columnIndex) throws SQLException {999throw new UnsupportedOperationException("Not supported yet.");1000}10011002@Override1003public float getFloat(int columnIndex) throws SQLException {1004throw new UnsupportedOperationException("Not supported yet.");1005}10061007@Override1008public double getDouble(int columnIndex) throws SQLException {1009throw new UnsupportedOperationException("Not supported yet.");1010}10111012@Override1013public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {1014throw new UnsupportedOperationException("Not supported yet.");1015}10161017@Override1018public byte[] getBytes(int columnIndex) throws SQLException {1019throw new UnsupportedOperationException("Not supported yet.");1020}10211022@Override1023public Date getDate(int columnIndex) throws SQLException {1024throw new UnsupportedOperationException("Not supported yet.");1025}10261027@Override1028public Time getTime(int columnIndex) throws SQLException {1029throw new UnsupportedOperationException("Not supported yet.");1030}10311032@Override1033public Timestamp getTimestamp(int columnIndex) throws SQLException {1034throw new UnsupportedOperationException("Not supported yet.");1035}10361037@Override1038public InputStream getAsciiStream(int columnIndex) throws SQLException {1039throw new UnsupportedOperationException("Not supported yet.");1040}10411042@Override1043public InputStream getUnicodeStream(int columnIndex) throws SQLException {1044throw new UnsupportedOperationException("Not supported yet.");1045}10461047@Override1048public InputStream getBinaryStream(int columnIndex) throws SQLException {1049throw new UnsupportedOperationException("Not supported yet.");1050}10511052@Override1053public String getString(String columnLabel) throws SQLException {1054throw new UnsupportedOperationException("Not supported yet.");1055}10561057@Override1058public boolean getBoolean(String columnLabel) throws SQLException {1059throw new UnsupportedOperationException("Not supported yet.");1060}10611062@Override1063public byte getByte(String columnLabel) throws SQLException {1064throw new UnsupportedOperationException("Not supported yet.");1065}10661067@Override1068public short getShort(String columnLabel) throws SQLException {1069throw new UnsupportedOperationException("Not supported yet.");1070}10711072@Override1073public int getInt(String columnLabel) throws SQLException {1074throw new UnsupportedOperationException("Not supported yet.");1075}10761077@Override1078public long getLong(String columnLabel) throws SQLException {1079throw new UnsupportedOperationException("Not supported yet.");1080}10811082@Override1083public float getFloat(String columnLabel) throws SQLException {1084throw new UnsupportedOperationException("Not supported yet.");1085}10861087@Override1088public double getDouble(String columnLabel) throws SQLException {1089throw new UnsupportedOperationException("Not supported yet.");1090}10911092@Override1093public BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException {1094throw new UnsupportedOperationException("Not supported yet.");1095}10961097@Override1098public byte[] getBytes(String columnLabel) throws SQLException {1099throw new UnsupportedOperationException("Not supported yet.");1100}11011102@Override1103public Date getDate(String columnLabel) throws SQLException {1104throw new UnsupportedOperationException("Not supported yet.");1105}11061107@Override1108public Time getTime(String columnLabel) throws SQLException {1109throw new UnsupportedOperationException("Not supported yet.");1110}11111112@Override1113public Timestamp getTimestamp(String columnLabel) throws SQLException {1114throw new UnsupportedOperationException("Not supported yet.");1115}11161117@Override1118public InputStream getAsciiStream(String columnLabel) throws SQLException {1119throw new UnsupportedOperationException("Not supported yet.");1120}11211122@Override1123public InputStream getUnicodeStream(String columnLabel) throws SQLException {1124throw new UnsupportedOperationException("Not supported yet.");1125}11261127@Override1128public InputStream getBinaryStream(String columnLabel) throws SQLException {1129throw new UnsupportedOperationException("Not supported yet.");1130}11311132@Override1133public SQLWarning getWarnings() throws SQLException {1134throw new UnsupportedOperationException("Not supported yet.");1135}11361137@Override1138public void clearWarnings() throws SQLException {1139throw new UnsupportedOperationException("Not supported yet.");1140}11411142@Override1143public String getCursorName() throws SQLException {1144throw new UnsupportedOperationException("Not supported yet.");1145}11461147@Override1148public ResultSetMetaData getMetaData() throws SQLException {1149throw new UnsupportedOperationException("Not supported yet.");1150}11511152@Override1153public Object getObject(int columnIndex) throws SQLException {1154throw new UnsupportedOperationException("Not supported yet.");1155}11561157@Override1158public Object getObject(String columnLabel) throws SQLException {1159throw new UnsupportedOperationException("Not supported yet.");1160}11611162@Override1163public int findColumn(String columnLabel) throws SQLException {1164throw new UnsupportedOperationException("Not supported yet.");1165}11661167@Override1168public Reader getCharacterStream(int columnIndex) throws SQLException {1169throw new UnsupportedOperationException("Not supported yet.");1170}11711172@Override1173public Reader getCharacterStream(String columnLabel) throws SQLException {1174throw new UnsupportedOperationException("Not supported yet.");1175}11761177@Override1178public BigDecimal getBigDecimal(int columnIndex) throws SQLException {1179throw new UnsupportedOperationException("Not supported yet.");1180}11811182@Override1183public BigDecimal getBigDecimal(String columnLabel) throws SQLException {1184throw new UnsupportedOperationException("Not supported yet.");1185}11861187@Override1188public boolean isBeforeFirst() throws SQLException {1189throw new UnsupportedOperationException("Not supported yet.");1190}11911192@Override1193public boolean isAfterLast() throws SQLException {1194throw new UnsupportedOperationException("Not supported yet.");1195}11961197@Override1198public boolean isFirst() throws SQLException {1199throw new UnsupportedOperationException("Not supported yet.");1200}12011202@Override1203public boolean isLast() throws SQLException {1204throw new UnsupportedOperationException("Not supported yet.");1205}12061207@Override1208public void beforeFirst() throws SQLException {1209throw new UnsupportedOperationException("Not supported yet.");1210}12111212@Override1213public void afterLast() throws SQLException {1214throw new UnsupportedOperationException("Not supported yet.");1215}12161217@Override1218public boolean first() throws SQLException {1219throw new UnsupportedOperationException("Not supported yet.");1220}12211222@Override1223public boolean last() throws SQLException {1224throw new UnsupportedOperationException("Not supported yet.");1225}12261227@Override1228public int getRow() throws SQLException {1229throw new UnsupportedOperationException("Not supported yet.");1230}12311232@Override1233public boolean absolute(int row) throws SQLException {1234throw new UnsupportedOperationException("Not supported yet.");1235}12361237@Override1238public boolean relative(int rows) throws SQLException {1239throw new UnsupportedOperationException("Not supported yet.");1240}12411242@Override1243public boolean previous() throws SQLException {1244throw new UnsupportedOperationException("Not supported yet.");1245}12461247@Override1248public void setFetchDirection(int direction) throws SQLException {1249throw new UnsupportedOperationException("Not supported yet.");1250}12511252@Override1253public int getFetchDirection() throws SQLException {1254throw new UnsupportedOperationException("Not supported yet.");1255}12561257@Override1258public void setFetchSize(int rows) throws SQLException {1259throw new UnsupportedOperationException("Not supported yet.");1260}12611262@Override1263public int getFetchSize() throws SQLException {1264throw new UnsupportedOperationException("Not supported yet.");1265}12661267@Override1268public int getType() throws SQLException {1269throw new UnsupportedOperationException("Not supported yet.");1270}12711272@Override1273public int getConcurrency() throws SQLException {1274throw new UnsupportedOperationException("Not supported yet.");1275}12761277@Override1278public boolean rowUpdated() throws SQLException {1279throw new UnsupportedOperationException("Not supported yet.");1280}12811282@Override1283public boolean rowInserted() throws SQLException {1284throw new UnsupportedOperationException("Not supported yet.");1285}12861287@Override1288public boolean rowDeleted() throws SQLException {1289throw new UnsupportedOperationException("Not supported yet.");1290}12911292@Override1293public void updateNull(int columnIndex) throws SQLException {1294throw new UnsupportedOperationException("Not supported yet.");1295}12961297@Override1298public void updateBoolean(int columnIndex, boolean x) throws SQLException {1299throw new UnsupportedOperationException("Not supported yet.");1300}13011302@Override1303public void updateByte(int columnIndex, byte x) throws SQLException {1304throw new UnsupportedOperationException("Not supported yet.");1305}13061307@Override1308public void updateShort(int columnIndex, short x) throws SQLException {1309throw new UnsupportedOperationException("Not supported yet.");1310}13111312@Override1313public void updateInt(int columnIndex, int x) throws SQLException {1314throw new UnsupportedOperationException("Not supported yet.");1315}13161317@Override1318public void updateLong(int columnIndex, long x) throws SQLException {1319throw new UnsupportedOperationException("Not supported yet.");1320}13211322@Override1323public void updateFloat(int columnIndex, float x) throws SQLException {1324throw new UnsupportedOperationException("Not supported yet.");1325}13261327@Override1328public void updateDouble(int columnIndex, double x) throws SQLException {1329throw new UnsupportedOperationException("Not supported yet.");1330}13311332@Override1333public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {1334throw new UnsupportedOperationException("Not supported yet.");1335}13361337@Override1338public void updateString(int columnIndex, String x) throws SQLException {1339throw new UnsupportedOperationException("Not supported yet.");1340}13411342@Override1343public void updateBytes(int columnIndex, byte[] x) throws SQLException {1344throw new UnsupportedOperationException("Not supported yet.");1345}13461347@Override1348public void updateDate(int columnIndex, Date x) throws SQLException {1349throw new UnsupportedOperationException("Not supported yet.");1350}13511352@Override1353public void updateTime(int columnIndex, Time x) throws SQLException {1354throw new UnsupportedOperationException("Not supported yet.");1355}13561357@Override1358public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {1359throw new UnsupportedOperationException("Not supported yet.");1360}13611362@Override1363public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {1364throw new UnsupportedOperationException("Not supported yet.");1365}13661367@Override1368public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {1369throw new UnsupportedOperationException("Not supported yet.");1370}13711372@Override1373public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {1374throw new UnsupportedOperationException("Not supported yet.");1375}13761377@Override1378public void updateObject(int columnIndex, Object x, int scaleOrLength) throws SQLException {1379throw new UnsupportedOperationException("Not supported yet.");1380}13811382@Override1383public void updateObject(int columnIndex, Object x) throws SQLException {1384throw new UnsupportedOperationException("Not supported yet.");1385}13861387@Override1388public void updateNull(String columnLabel) throws SQLException {1389throw new UnsupportedOperationException("Not supported yet.");1390}13911392@Override1393public void updateBoolean(String columnLabel, boolean x) throws SQLException {1394throw new UnsupportedOperationException("Not supported yet.");1395}13961397@Override1398public void updateByte(String columnLabel, byte x) throws SQLException {1399throw new UnsupportedOperationException("Not supported yet.");1400}14011402@Override1403public void updateShort(String columnLabel, short x) throws SQLException {1404throw new UnsupportedOperationException("Not supported yet.");1405}14061407@Override1408public void updateInt(String columnLabel, int x) throws SQLException {1409throw new UnsupportedOperationException("Not supported yet.");1410}14111412@Override1413public void updateLong(String columnLabel, long x) throws SQLException {1414throw new UnsupportedOperationException("Not supported yet.");1415}14161417@Override1418public void updateFloat(String columnLabel, float x) throws SQLException {1419throw new UnsupportedOperationException("Not supported yet.");1420}14211422@Override1423public void updateDouble(String columnLabel, double x) throws SQLException {1424throw new UnsupportedOperationException("Not supported yet.");1425}14261427@Override1428public void updateBigDecimal(String columnLabel, BigDecimal x) throws SQLException {1429throw new UnsupportedOperationException("Not supported yet.");1430}14311432@Override1433public void updateString(String columnLabel, String x) throws SQLException {1434throw new UnsupportedOperationException("Not supported yet.");1435}14361437@Override1438public void updateBytes(String columnLabel, byte[] x) throws SQLException {1439throw new UnsupportedOperationException("Not supported yet.");1440}14411442@Override1443public void updateDate(String columnLabel, Date x) throws SQLException {1444throw new UnsupportedOperationException("Not supported yet.");1445}14461447@Override1448public void updateTime(String columnLabel, Time x) throws SQLException {1449throw new UnsupportedOperationException("Not supported yet.");1450}14511452@Override1453public void updateTimestamp(String columnLabel, Timestamp x) throws SQLException {1454throw new UnsupportedOperationException("Not supported yet.");1455}14561457@Override1458public void updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException {1459throw new UnsupportedOperationException("Not supported yet.");1460}14611462@Override1463public void updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException {1464throw new UnsupportedOperationException("Not supported yet.");1465}14661467@Override1468public void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException {1469throw new UnsupportedOperationException("Not supported yet.");1470}14711472@Override1473public void updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException {1474throw new UnsupportedOperationException("Not supported yet.");1475}14761477@Override1478public void updateObject(String columnLabel, Object x) throws SQLException {1479throw new UnsupportedOperationException("Not supported yet.");1480}14811482@Override1483public void insertRow() throws SQLException {1484throw new UnsupportedOperationException("Not supported yet.");1485}14861487@Override1488public void updateRow() throws SQLException {1489throw new UnsupportedOperationException("Not supported yet.");1490}14911492@Override1493public void deleteRow() throws SQLException {1494throw new UnsupportedOperationException("Not supported yet.");1495}14961497@Override1498public void refreshRow() throws SQLException {1499throw new UnsupportedOperationException("Not supported yet.");1500}15011502@Override1503public void cancelRowUpdates() throws SQLException {1504throw new UnsupportedOperationException("Not supported yet.");1505}15061507@Override1508public void moveToInsertRow() throws SQLException {1509throw new UnsupportedOperationException("Not supported yet.");1510}15111512@Override1513public void moveToCurrentRow() throws SQLException {1514throw new UnsupportedOperationException("Not supported yet.");1515}15161517@Override1518public Statement getStatement() throws SQLException {1519throw new UnsupportedOperationException("Not supported yet.");1520}15211522@Override1523public Object getObject(int columnIndex, Map<String, Class<?>> map) throws SQLException {1524throw new UnsupportedOperationException("Not supported yet.");1525}15261527@Override1528public Ref getRef(int columnIndex) throws SQLException {1529throw new UnsupportedOperationException("Not supported yet.");1530}15311532@Override1533public Blob getBlob(int columnIndex) throws SQLException {1534throw new UnsupportedOperationException("Not supported yet.");1535}15361537@Override1538public Clob getClob(int columnIndex) throws SQLException {1539throw new UnsupportedOperationException("Not supported yet.");1540}15411542@Override1543public Array getArray(int columnIndex) throws SQLException {1544throw new UnsupportedOperationException("Not supported yet.");1545}15461547@Override1548public Object getObject(String columnLabel, Map<String, Class<?>> map) throws SQLException {1549throw new UnsupportedOperationException("Not supported yet.");1550}15511552@Override1553public Ref getRef(String columnLabel) throws SQLException {1554throw new UnsupportedOperationException("Not supported yet.");1555}15561557@Override1558public Blob getBlob(String columnLabel) throws SQLException {1559throw new UnsupportedOperationException("Not supported yet.");1560}15611562@Override1563public Clob getClob(String columnLabel) throws SQLException {1564throw new UnsupportedOperationException("Not supported yet.");1565}15661567@Override1568public Array getArray(String columnLabel) throws SQLException {1569throw new UnsupportedOperationException("Not supported yet.");1570}15711572@Override1573public Date getDate(int columnIndex, Calendar cal) throws SQLException {1574throw new UnsupportedOperationException("Not supported yet.");1575}15761577@Override1578public Date getDate(String columnLabel, Calendar cal) throws SQLException {1579throw new UnsupportedOperationException("Not supported yet.");1580}15811582@Override1583public Time getTime(int columnIndex, Calendar cal) throws SQLException {1584throw new UnsupportedOperationException("Not supported yet.");1585}15861587@Override1588public Time getTime(String columnLabel, Calendar cal) throws SQLException {1589throw new UnsupportedOperationException("Not supported yet.");1590}15911592@Override1593public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {1594throw new UnsupportedOperationException("Not supported yet.");1595}15961597@Override1598public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException {1599throw new UnsupportedOperationException("Not supported yet.");1600}16011602@Override1603public URL getURL(int columnIndex) throws SQLException {1604throw new UnsupportedOperationException("Not supported yet.");1605}16061607@Override1608public URL getURL(String columnLabel) throws SQLException {1609throw new UnsupportedOperationException("Not supported yet.");1610}16111612@Override1613public void updateRef(int columnIndex, Ref x) throws SQLException {1614throw new UnsupportedOperationException("Not supported yet.");1615}16161617@Override1618public void updateRef(String columnLabel, Ref x) throws SQLException {1619throw new UnsupportedOperationException("Not supported yet.");1620}16211622@Override1623public void updateBlob(int columnIndex, Blob x) throws SQLException {1624throw new UnsupportedOperationException("Not supported yet.");1625}16261627@Override1628public void updateBlob(String columnLabel, Blob x) throws SQLException {1629throw new UnsupportedOperationException("Not supported yet.");1630}16311632@Override1633public void updateClob(int columnIndex, Clob x) throws SQLException {1634throw new UnsupportedOperationException("Not supported yet.");1635}16361637@Override1638public void updateClob(String columnLabel, Clob x) throws SQLException {1639throw new UnsupportedOperationException("Not supported yet.");1640}16411642@Override1643public void updateArray(int columnIndex, Array x) throws SQLException {1644throw new UnsupportedOperationException("Not supported yet.");1645}16461647@Override1648public void updateArray(String columnLabel, Array x) throws SQLException {1649throw new UnsupportedOperationException("Not supported yet.");1650}16511652@Override1653public RowId getRowId(int columnIndex) throws SQLException {1654throw new UnsupportedOperationException("Not supported yet.");1655}16561657@Override1658public RowId getRowId(String columnLabel) throws SQLException {1659throw new UnsupportedOperationException("Not supported yet.");1660}16611662@Override1663public void updateRowId(int columnIndex, RowId x) throws SQLException {1664throw new UnsupportedOperationException("Not supported yet.");1665}16661667@Override1668public void updateRowId(String columnLabel, RowId x) throws SQLException {1669throw new UnsupportedOperationException("Not supported yet.");1670}16711672@Override1673public int getHoldability() throws SQLException {1674throw new UnsupportedOperationException("Not supported yet.");1675}16761677@Override1678public boolean isClosed() throws SQLException {1679throw new UnsupportedOperationException("Not supported yet.");1680}16811682@Override1683public void updateNString(int columnIndex, String nString) throws SQLException {1684throw new UnsupportedOperationException("Not supported yet.");1685}16861687@Override1688public void updateNString(String columnLabel, String nString) throws SQLException {1689throw new UnsupportedOperationException("Not supported yet.");1690}16911692@Override1693public void updateNClob(int columnIndex, NClob nClob) throws SQLException {1694throw new UnsupportedOperationException("Not supported yet.");1695}16961697@Override1698public void updateNClob(String columnLabel, NClob nClob) throws SQLException {1699throw new UnsupportedOperationException("Not supported yet.");1700}17011702@Override1703public NClob getNClob(int columnIndex) throws SQLException {1704throw new UnsupportedOperationException("Not supported yet.");1705}17061707@Override1708public NClob getNClob(String columnLabel) throws SQLException {1709throw new UnsupportedOperationException("Not supported yet.");1710}17111712@Override1713public SQLXML getSQLXML(int columnIndex) throws SQLException {1714throw new UnsupportedOperationException("Not supported yet.");1715}17161717@Override1718public SQLXML getSQLXML(String columnLabel) throws SQLException {1719throw new UnsupportedOperationException("Not supported yet.");1720}17211722@Override1723public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException {1724throw new UnsupportedOperationException("Not supported yet.");1725}17261727@Override1728public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException {1729throw new UnsupportedOperationException("Not supported yet.");1730}17311732@Override1733public String getNString(int columnIndex) throws SQLException {1734throw new UnsupportedOperationException("Not supported yet.");1735}17361737@Override1738public String getNString(String columnLabel) throws SQLException {1739throw new UnsupportedOperationException("Not supported yet.");1740}17411742@Override1743public Reader getNCharacterStream(int columnIndex) throws SQLException {1744throw new UnsupportedOperationException("Not supported yet.");1745}17461747@Override1748public Reader getNCharacterStream(String columnLabel) throws SQLException {1749throw new UnsupportedOperationException("Not supported yet.");1750}17511752@Override1753public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException {1754throw new UnsupportedOperationException("Not supported yet.");1755}17561757@Override1758public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {1759throw new UnsupportedOperationException("Not supported yet.");1760}17611762@Override1763public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException {1764throw new UnsupportedOperationException("Not supported yet.");1765}17661767@Override1768public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {1769throw new UnsupportedOperationException("Not supported yet.");1770}17711772@Override1773public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {1774throw new UnsupportedOperationException("Not supported yet.");1775}17761777@Override1778public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException {1779throw new UnsupportedOperationException("Not supported yet.");1780}17811782@Override1783public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException {1784throw new UnsupportedOperationException("Not supported yet.");1785}17861787@Override1788public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {1789throw new UnsupportedOperationException("Not supported yet.");1790}17911792@Override1793public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException {1794throw new UnsupportedOperationException("Not supported yet.");1795}17961797@Override1798public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException {1799throw new UnsupportedOperationException("Not supported yet.");1800}18011802@Override1803public void updateClob(int columnIndex, Reader reader, long length) throws SQLException {1804throw new UnsupportedOperationException("Not supported yet.");1805}18061807@Override1808public void updateClob(String columnLabel, Reader reader, long length) throws SQLException {1809throw new UnsupportedOperationException("Not supported yet.");1810}18111812@Override1813public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException {1814throw new UnsupportedOperationException("Not supported yet.");1815}18161817@Override1818public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException {1819throw new UnsupportedOperationException("Not supported yet.");1820}18211822@Override1823public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException {1824throw new UnsupportedOperationException("Not supported yet.");1825}18261827@Override1828public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException {1829throw new UnsupportedOperationException("Not supported yet.");1830}18311832@Override1833public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException {1834throw new UnsupportedOperationException("Not supported yet.");1835}18361837@Override1838public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException {1839throw new UnsupportedOperationException("Not supported yet.");1840}18411842@Override1843public void updateCharacterStream(int columnIndex, Reader x) throws SQLException {1844throw new UnsupportedOperationException("Not supported yet.");1845}18461847@Override1848public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException {1849throw new UnsupportedOperationException("Not supported yet.");1850}18511852@Override1853public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException {1854throw new UnsupportedOperationException("Not supported yet.");1855}18561857@Override1858public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException {1859throw new UnsupportedOperationException("Not supported yet.");1860}18611862@Override1863public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException {1864throw new UnsupportedOperationException("Not supported yet.");1865}18661867@Override1868public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException {1869throw new UnsupportedOperationException("Not supported yet.");1870}18711872@Override1873public void updateClob(int columnIndex, Reader reader) throws SQLException {1874throw new UnsupportedOperationException("Not supported yet.");1875}18761877@Override1878public void updateClob(String columnLabel, Reader reader) throws SQLException {1879throw new UnsupportedOperationException("Not supported yet.");1880}18811882@Override1883public void updateNClob(int columnIndex, Reader reader) throws SQLException {1884throw new UnsupportedOperationException("Not supported yet.");1885}18861887@Override1888public void updateNClob(String columnLabel, Reader reader) throws SQLException {1889throw new UnsupportedOperationException("Not supported yet.");1890}18911892@Override1893public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {1894throw new UnsupportedOperationException("Not supported yet.");1895}18961897@Override1898public <T> T getObject(String columnLabel, Class<T> type) throws SQLException {1899throw new UnsupportedOperationException("Not supported yet.");1900}19011902@Override1903public <T> T unwrap(Class<T> iface) throws SQLException {1904throw new UnsupportedOperationException("Not supported yet.");1905}19061907@Override1908public boolean isWrapperFor(Class<?> iface) throws SQLException {1909throw new UnsupportedOperationException("Not supported yet.");1910}19111912@Override1913public void setMatchColumn(int columnIdx) throws SQLException {1914throw new UnsupportedOperationException("Not supported yet.");1915}19161917@Override1918public void setMatchColumn(int[] columnIdxes) throws SQLException {1919throw new UnsupportedOperationException("Not supported yet.");1920}19211922@Override1923public void setMatchColumn(String columnName) throws SQLException {1924throw new UnsupportedOperationException("Not supported yet.");1925}19261927@Override1928public void setMatchColumn(String[] columnNames) throws SQLException {1929throw new UnsupportedOperationException("Not supported yet.");1930}19311932@Override1933public int[] getMatchColumnIndexes() throws SQLException {1934throw new UnsupportedOperationException("Not supported yet.");1935}19361937@Override1938public String[] getMatchColumnNames() throws SQLException {1939throw new UnsupportedOperationException("Not supported yet.");1940}19411942@Override1943public void unsetMatchColumn(int columnIdx) throws SQLException {1944throw new UnsupportedOperationException("Not supported yet.");1945}19461947@Override1948public void unsetMatchColumn(int[] columnIdxes) throws SQLException {1949throw new UnsupportedOperationException("Not supported yet.");1950}19511952@Override1953public void unsetMatchColumn(String columnName) throws SQLException {1954throw new UnsupportedOperationException("Not supported yet.");1955}19561957@Override1958public void unsetMatchColumn(String[] columnName) throws SQLException {1959throw new UnsupportedOperationException("Not supported yet.");1960}1961}196219631964