1 /* 2 * Licensed to the Apache Software Foundation (ASF) under one or more 3 * contributor license agreements. See the NOTICE file distributed with 4 * this work for additional information regarding copyright ownership. 5 * The ASF licenses this file to You under the Apache License, Version 2.0 6 * (the "License"); you may not use this file except in compliance with 7 * the License. You may obtain a copy of the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 */ 17 18 package org.apache.harmony.sql.tests.javax.sql; 19 20 import java.io.InputStream; 21 import java.io.Reader; 22 import java.math.BigDecimal; 23 import java.net.URL; 24 import java.sql.Array; 25 import java.sql.Blob; 26 import java.sql.Clob; 27 import java.sql.Date; 28 import java.sql.NClob; 29 import java.sql.Ref; 30 import java.sql.ResultSetMetaData; 31 import java.sql.RowId; 32 import java.sql.SQLException; 33 import java.sql.SQLWarning; 34 import java.sql.SQLXML; 35 import java.sql.Statement; 36 import java.sql.Time; 37 import java.sql.Timestamp; 38 import java.util.Calendar; 39 import java.util.Map; 40 import javax.sql.RowSet; 41 import javax.sql.RowSetListener; 42 43 @SuppressWarnings("deprecation") 44 class Impl_RowSet implements RowSet { addRowSetListener(RowSetListener theListener)45 public void addRowSetListener(RowSetListener theListener) { 46 } 47 clearParameters()48 public void clearParameters() throws SQLException { 49 } 50 execute()51 public void execute() throws SQLException { 52 } 53 getCommand()54 public String getCommand() { 55 return null; 56 } 57 getDataSourceName()58 public String getDataSourceName() { 59 return null; 60 } 61 getEscapeProcessing()62 public boolean getEscapeProcessing() throws SQLException { 63 return false; 64 } 65 getMaxFieldSize()66 public int getMaxFieldSize() throws SQLException { 67 return 0; 68 } 69 getMaxRows()70 public int getMaxRows() throws SQLException { 71 return 0; 72 } 73 getPassword()74 public String getPassword() { 75 return null; 76 } 77 getQueryTimeout()78 public int getQueryTimeout() throws SQLException { 79 return 0; 80 } 81 getTransactionIsolation()82 public int getTransactionIsolation() { 83 return 0; 84 } 85 getTypeMap()86 public Map<String, Class<?>> getTypeMap() throws SQLException { 87 return null; 88 } 89 getUrl()90 public String getUrl() throws SQLException { 91 return null; 92 } 93 getUsername()94 public String getUsername() { 95 return null; 96 } 97 isReadOnly()98 public boolean isReadOnly() { 99 return false; 100 } 101 removeRowSetListener(RowSetListener theListener)102 public void removeRowSetListener(RowSetListener theListener) { 103 } 104 setArray(int parameterIndex, Array theArray)105 public void setArray(int parameterIndex, Array theArray) 106 throws SQLException { 107 } 108 setAsciiStream(int parameterIndex, InputStream theInputStream, int length)109 public void setAsciiStream(int parameterIndex, InputStream theInputStream, 110 int length) throws SQLException { 111 } 112 setBigDecimal(int parameterIndex, BigDecimal theBigDecimal)113 public void setBigDecimal(int parameterIndex, BigDecimal theBigDecimal) 114 throws SQLException { 115 } 116 setBinaryStream(int parameterIndex, InputStream theInputStream, int length)117 public void setBinaryStream(int parameterIndex, InputStream theInputStream, 118 int length) throws SQLException { 119 } 120 setBlob(int parameterIndex, Blob theBlob)121 public void setBlob(int parameterIndex, Blob theBlob) throws SQLException { 122 } 123 setBoolean(int parameterIndex, boolean theBoolean)124 public void setBoolean(int parameterIndex, boolean theBoolean) 125 throws SQLException { 126 } 127 setByte(int parameterIndex, byte theByte)128 public void setByte(int parameterIndex, byte theByte) throws SQLException { 129 } 130 setBytes(int parameterIndex, byte[] theByteArray)131 public void setBytes(int parameterIndex, byte[] theByteArray) 132 throws SQLException { 133 } 134 setCharacterStream(int parameterIndex, Reader theReader, int length)135 public void setCharacterStream(int parameterIndex, Reader theReader, 136 int length) throws SQLException { 137 } 138 setClob(int parameterIndex, Clob theClob)139 public void setClob(int parameterIndex, Clob theClob) throws SQLException { 140 } 141 setCommand(String cmd)142 public void setCommand(String cmd) throws SQLException { 143 } 144 setConcurrency(int concurrency)145 public void setConcurrency(int concurrency) throws SQLException { 146 } 147 setDataSourceName(String name)148 public void setDataSourceName(String name) throws SQLException { 149 } 150 setDate(int parameterIndex, Date theDate, Calendar theCalendar)151 public void setDate(int parameterIndex, Date theDate, Calendar theCalendar) 152 throws SQLException { 153 } 154 setDate(int parameterIndex, Date theDate)155 public void setDate(int parameterIndex, Date theDate) throws SQLException { 156 } 157 setDouble(int parameterIndex, double theDouble)158 public void setDouble(int parameterIndex, double theDouble) 159 throws SQLException { 160 } 161 setEscapeProcessing(boolean enable)162 public void setEscapeProcessing(boolean enable) throws SQLException { 163 } 164 setFloat(int parameterIndex, float theFloat)165 public void setFloat(int parameterIndex, float theFloat) 166 throws SQLException { 167 } 168 setInt(int parameterIndex, int theInteger)169 public void setInt(int parameterIndex, int theInteger) throws SQLException { 170 } 171 setLong(int parameterIndex, long theLong)172 public void setLong(int parameterIndex, long theLong) throws SQLException { 173 } 174 setMaxFieldSize(int max)175 public void setMaxFieldSize(int max) throws SQLException { 176 } 177 setMaxRows(int max)178 public void setMaxRows(int max) throws SQLException { 179 } 180 setNull(int parameterIndex, int sqlType, String typeName)181 public void setNull(int parameterIndex, int sqlType, String typeName) 182 throws SQLException { 183 } 184 setNull(int parameterIndex, int sqlType)185 public void setNull(int parameterIndex, int sqlType) throws SQLException { 186 } 187 setObject(int parameterIndex, Object theObject, int targetSqlType, int scale)188 public void setObject(int parameterIndex, Object theObject, 189 int targetSqlType, int scale) throws SQLException { 190 } 191 setObject(int parameterIndex, Object theObject, int targetSqlType)192 public void setObject(int parameterIndex, Object theObject, 193 int targetSqlType) throws SQLException { 194 } 195 setObject(int parameterIndex, Object theObject)196 public void setObject(int parameterIndex, Object theObject) 197 throws SQLException { 198 } 199 setPassword(String password)200 public void setPassword(String password) throws SQLException { 201 } 202 setQueryTimeout(int seconds)203 public void setQueryTimeout(int seconds) throws SQLException { 204 } 205 setReadOnly(boolean readOnly)206 public void setReadOnly(boolean readOnly) throws SQLException { 207 } 208 setRef(int parameterIndex, Ref theRef)209 public void setRef(int parameterIndex, Ref theRef) throws SQLException { 210 } 211 setShort(int parameterIndex, short theShort)212 public void setShort(int parameterIndex, short theShort) 213 throws SQLException { 214 } 215 setString(int parameterIndex, String theString)216 public void setString(int parameterIndex, String theString) 217 throws SQLException { 218 } 219 setTime(int parameterIndex, Time theTime, Calendar theCalendar)220 public void setTime(int parameterIndex, Time theTime, Calendar theCalendar) 221 throws SQLException { 222 } 223 setTime(int parameterIndex, Time theTime)224 public void setTime(int parameterIndex, Time theTime) throws SQLException { 225 } 226 setTimestamp(int parameterIndex, Timestamp theTimestamp, Calendar theCalendar)227 public void setTimestamp(int parameterIndex, Timestamp theTimestamp, 228 Calendar theCalendar) throws SQLException { 229 } 230 setTimestamp(int parameterIndex, Timestamp theTimestamp)231 public void setTimestamp(int parameterIndex, Timestamp theTimestamp) 232 throws SQLException { 233 } 234 setTransactionIsolation(int level)235 public void setTransactionIsolation(int level) throws SQLException { 236 } 237 setType(int type)238 public void setType(int type) throws SQLException { 239 } 240 setTypeMap(Map<String, Class<?>> theTypeMap)241 public void setTypeMap(Map<String, Class<?>> theTypeMap) 242 throws SQLException { 243 } 244 setUrl(String theURL)245 public void setUrl(String theURL) throws SQLException { 246 } 247 setUsername(String theUsername)248 public void setUsername(String theUsername) throws SQLException { 249 } 250 absolute(int row)251 public boolean absolute(int row) throws SQLException { 252 return false; 253 } 254 afterLast()255 public void afterLast() throws SQLException { 256 } 257 beforeFirst()258 public void beforeFirst() throws SQLException { 259 } 260 cancelRowUpdates()261 public void cancelRowUpdates() throws SQLException { 262 } 263 clearWarnings()264 public void clearWarnings() throws SQLException { 265 } 266 close()267 public void close() throws SQLException { 268 } 269 deleteRow()270 public void deleteRow() throws SQLException { 271 } 272 findColumn(String columnName)273 public int findColumn(String columnName) throws SQLException { 274 return 0; 275 } 276 first()277 public boolean first() throws SQLException { 278 return false; 279 } 280 getArray(int columnIndex)281 public Array getArray(int columnIndex) throws SQLException { 282 return null; 283 } 284 getArray(String colName)285 public Array getArray(String colName) throws SQLException { 286 return null; 287 } 288 getAsciiStream(int columnIndex)289 public InputStream getAsciiStream(int columnIndex) throws SQLException { 290 return null; 291 } 292 getAsciiStream(String columnName)293 public InputStream getAsciiStream(String columnName) throws SQLException { 294 return null; 295 } 296 getBigDecimal(int columnIndex, int scale)297 public BigDecimal getBigDecimal(int columnIndex, int scale) 298 throws SQLException { 299 return null; 300 } 301 getBigDecimal(int columnIndex)302 public BigDecimal getBigDecimal(int columnIndex) throws SQLException { 303 return null; 304 } 305 getBigDecimal(String columnName, int scale)306 public BigDecimal getBigDecimal(String columnName, int scale) 307 throws SQLException { 308 return null; 309 } 310 getBigDecimal(String columnName)311 public BigDecimal getBigDecimal(String columnName) throws SQLException { 312 return null; 313 } 314 getBinaryStream(int columnIndex)315 public InputStream getBinaryStream(int columnIndex) throws SQLException { 316 return null; 317 } 318 getBinaryStream(String columnName)319 public InputStream getBinaryStream(String columnName) throws SQLException { 320 return null; 321 } 322 getBlob(int columnIndex)323 public Blob getBlob(int columnIndex) throws SQLException { 324 return null; 325 } 326 getBlob(String columnName)327 public Blob getBlob(String columnName) throws SQLException { 328 return null; 329 } 330 getBoolean(int columnIndex)331 public boolean getBoolean(int columnIndex) throws SQLException { 332 return false; 333 } 334 getBoolean(String columnName)335 public boolean getBoolean(String columnName) throws SQLException { 336 return false; 337 } 338 getByte(int columnIndex)339 public byte getByte(int columnIndex) throws SQLException { 340 return 0; 341 } 342 getByte(String columnName)343 public byte getByte(String columnName) throws SQLException { 344 return 0; 345 } 346 getBytes(int columnIndex)347 public byte[] getBytes(int columnIndex) throws SQLException { 348 return null; 349 } 350 getBytes(String columnName)351 public byte[] getBytes(String columnName) throws SQLException { 352 return null; 353 } 354 getCharacterStream(int columnIndex)355 public Reader getCharacterStream(int columnIndex) throws SQLException { 356 return null; 357 } 358 getCharacterStream(String columnName)359 public Reader getCharacterStream(String columnName) throws SQLException { 360 return null; 361 } 362 getClob(int columnIndex)363 public Clob getClob(int columnIndex) throws SQLException { 364 return null; 365 } 366 getClob(String colName)367 public Clob getClob(String colName) throws SQLException { 368 return null; 369 } 370 getConcurrency()371 public int getConcurrency() throws SQLException { 372 return 0; 373 } 374 getCursorName()375 public String getCursorName() throws SQLException { 376 return null; 377 } 378 getDate(int columnIndex, Calendar cal)379 public Date getDate(int columnIndex, Calendar cal) throws SQLException { 380 return null; 381 } 382 getDate(int columnIndex)383 public Date getDate(int columnIndex) throws SQLException { 384 return null; 385 } 386 getDate(String columnName, Calendar cal)387 public Date getDate(String columnName, Calendar cal) throws SQLException { 388 return null; 389 } 390 getDate(String columnName)391 public Date getDate(String columnName) throws SQLException { 392 return null; 393 } 394 getDouble(int columnIndex)395 public double getDouble(int columnIndex) throws SQLException { 396 return 0; 397 } 398 getDouble(String columnName)399 public double getDouble(String columnName) throws SQLException { 400 return 0; 401 } 402 getFetchDirection()403 public int getFetchDirection() throws SQLException { 404 return 0; 405 } 406 getFetchSize()407 public int getFetchSize() throws SQLException { 408 return 0; 409 } 410 getFloat(int columnIndex)411 public float getFloat(int columnIndex) throws SQLException { 412 return 0; 413 } 414 getFloat(String columnName)415 public float getFloat(String columnName) throws SQLException { 416 return 0; 417 } 418 getInt(int columnIndex)419 public int getInt(int columnIndex) throws SQLException { 420 return 0; 421 } 422 getInt(String columnName)423 public int getInt(String columnName) throws SQLException { 424 return 0; 425 } 426 getLong(int columnIndex)427 public long getLong(int columnIndex) throws SQLException { 428 return 0; 429 } 430 getLong(String columnName)431 public long getLong(String columnName) throws SQLException { 432 return 0; 433 } 434 getMetaData()435 public ResultSetMetaData getMetaData() throws SQLException { 436 return null; 437 } 438 getObject(int columnIndex, Map<String, Class<?>> map)439 public Object getObject(int columnIndex, Map<String, Class<?>> map) 440 throws SQLException { 441 return null; 442 } 443 getObject(int columnIndex)444 public Object getObject(int columnIndex) throws SQLException { 445 return null; 446 } 447 getObject(String columnName, Map<String, Class<?>> map)448 public Object getObject(String columnName, Map<String, Class<?>> map) 449 throws SQLException { 450 return null; 451 } 452 getObject(String columnName)453 public Object getObject(String columnName) throws SQLException { 454 return null; 455 } 456 getRef(int columnIndex)457 public Ref getRef(int columnIndex) throws SQLException { 458 return null; 459 } 460 getRef(String colName)461 public Ref getRef(String colName) throws SQLException { 462 return null; 463 } 464 getRow()465 public int getRow() throws SQLException { 466 return 0; 467 } 468 getShort(int columnIndex)469 public short getShort(int columnIndex) throws SQLException { 470 return 0; 471 } 472 getShort(String columnName)473 public short getShort(String columnName) throws SQLException { 474 return 0; 475 } 476 getStatement()477 public Statement getStatement() throws SQLException { 478 return null; 479 } 480 getString(int columnIndex)481 public String getString(int columnIndex) throws SQLException { 482 return null; 483 } 484 getString(String columnName)485 public String getString(String columnName) throws SQLException { 486 return null; 487 } 488 getTime(int columnIndex, Calendar cal)489 public Time getTime(int columnIndex, Calendar cal) throws SQLException { 490 return null; 491 } 492 getTime(int columnIndex)493 public Time getTime(int columnIndex) throws SQLException { 494 return null; 495 } 496 getTime(String columnName, Calendar cal)497 public Time getTime(String columnName, Calendar cal) throws SQLException { 498 return null; 499 } 500 getTime(String columnName)501 public Time getTime(String columnName) throws SQLException { 502 return null; 503 } 504 getTimestamp(int columnIndex, Calendar cal)505 public Timestamp getTimestamp(int columnIndex, Calendar cal) 506 throws SQLException { 507 return null; 508 } 509 getTimestamp(int columnIndex)510 public Timestamp getTimestamp(int columnIndex) throws SQLException { 511 return null; 512 } 513 getTimestamp(String columnName, Calendar cal)514 public Timestamp getTimestamp(String columnName, Calendar cal) 515 throws SQLException { 516 return null; 517 } 518 getTimestamp(String columnName)519 public Timestamp getTimestamp(String columnName) throws SQLException { 520 return null; 521 } 522 getType()523 public int getType() throws SQLException { 524 return 0; 525 } 526 getUnicodeStream(int columnIndex)527 public InputStream getUnicodeStream(int columnIndex) throws SQLException { 528 return null; 529 } 530 getUnicodeStream(String columnName)531 public InputStream getUnicodeStream(String columnName) throws SQLException { 532 return null; 533 } 534 getURL(int columnIndex)535 public URL getURL(int columnIndex) throws SQLException { 536 return null; 537 } 538 getURL(String columnName)539 public URL getURL(String columnName) throws SQLException { 540 return null; 541 } 542 getWarnings()543 public SQLWarning getWarnings() throws SQLException { 544 return null; 545 } 546 insertRow()547 public void insertRow() throws SQLException { 548 } 549 isAfterLast()550 public boolean isAfterLast() throws SQLException { 551 return false; 552 } 553 isBeforeFirst()554 public boolean isBeforeFirst() throws SQLException { 555 return false; 556 } 557 isFirst()558 public boolean isFirst() throws SQLException { 559 return false; 560 } 561 isLast()562 public boolean isLast() throws SQLException { 563 return false; 564 } 565 last()566 public boolean last() throws SQLException { 567 return false; 568 } 569 moveToCurrentRow()570 public void moveToCurrentRow() throws SQLException { 571 } 572 moveToInsertRow()573 public void moveToInsertRow() throws SQLException { 574 } 575 next()576 public boolean next() throws SQLException { 577 return false; 578 } 579 previous()580 public boolean previous() throws SQLException { 581 return false; 582 } 583 refreshRow()584 public void refreshRow() throws SQLException { 585 } 586 relative(int rows)587 public boolean relative(int rows) throws SQLException { 588 return false; 589 } 590 rowDeleted()591 public boolean rowDeleted() throws SQLException { 592 return false; 593 } 594 rowInserted()595 public boolean rowInserted() throws SQLException { 596 return false; 597 } 598 rowUpdated()599 public boolean rowUpdated() throws SQLException { 600 return false; 601 } 602 setFetchDirection(int direction)603 public void setFetchDirection(int direction) throws SQLException { 604 } 605 setFetchSize(int rows)606 public void setFetchSize(int rows) throws SQLException { 607 } 608 updateArray(int columnIndex, Array x)609 public void updateArray(int columnIndex, Array x) throws SQLException { 610 } 611 updateArray(String columnName, Array x)612 public void updateArray(String columnName, Array x) throws SQLException { 613 } 614 updateAsciiStream(int columnIndex, InputStream x, int length)615 public void updateAsciiStream(int columnIndex, InputStream x, int length) 616 throws SQLException { 617 } 618 updateAsciiStream(String columnName, InputStream x, int length)619 public void updateAsciiStream(String columnName, InputStream x, int length) 620 throws SQLException { 621 } 622 updateBigDecimal(int columnIndex, BigDecimal x)623 public void updateBigDecimal(int columnIndex, BigDecimal x) 624 throws SQLException { 625 } 626 updateBigDecimal(String columnName, BigDecimal x)627 public void updateBigDecimal(String columnName, BigDecimal x) 628 throws SQLException { 629 } 630 updateBinaryStream(int columnIndex, InputStream x, int length)631 public void updateBinaryStream(int columnIndex, InputStream x, int length) 632 throws SQLException { 633 } 634 updateBinaryStream(String columnName, InputStream x, int length)635 public void updateBinaryStream(String columnName, InputStream x, int length) 636 throws SQLException { 637 } 638 updateBlob(int columnIndex, Blob x)639 public void updateBlob(int columnIndex, Blob x) throws SQLException { 640 } 641 updateBlob(String columnName, Blob x)642 public void updateBlob(String columnName, Blob x) throws SQLException { 643 } 644 updateBoolean(int columnIndex, boolean x)645 public void updateBoolean(int columnIndex, boolean x) throws SQLException { 646 } 647 updateBoolean(String columnName, boolean x)648 public void updateBoolean(String columnName, boolean x) throws SQLException { 649 } 650 updateByte(int columnIndex, byte x)651 public void updateByte(int columnIndex, byte x) throws SQLException { 652 } 653 updateByte(String columnName, byte x)654 public void updateByte(String columnName, byte x) throws SQLException { 655 } 656 updateBytes(int columnIndex, byte[] x)657 public void updateBytes(int columnIndex, byte[] x) throws SQLException { 658 } 659 updateBytes(String columnName, byte[] x)660 public void updateBytes(String columnName, byte[] x) throws SQLException { 661 } 662 updateCharacterStream(int columnIndex, Reader x, int length)663 public void updateCharacterStream(int columnIndex, Reader x, int length) 664 throws SQLException { 665 } 666 updateCharacterStream(String columnName, Reader reader, int length)667 public void updateCharacterStream(String columnName, Reader reader, 668 int length) throws SQLException { 669 } 670 updateClob(int columnIndex, Clob x)671 public void updateClob(int columnIndex, Clob x) throws SQLException { 672 } 673 updateClob(String columnName, Clob x)674 public void updateClob(String columnName, Clob x) throws SQLException { 675 } 676 updateDate(int columnIndex, Date x)677 public void updateDate(int columnIndex, Date x) throws SQLException { 678 } 679 updateDate(String columnName, Date x)680 public void updateDate(String columnName, Date x) throws SQLException { 681 } 682 updateDouble(int columnIndex, double x)683 public void updateDouble(int columnIndex, double x) throws SQLException { 684 } 685 updateDouble(String columnName, double x)686 public void updateDouble(String columnName, double x) throws SQLException { 687 } 688 updateFloat(int columnIndex, float x)689 public void updateFloat(int columnIndex, float x) throws SQLException { 690 } 691 updateFloat(String columnName, float x)692 public void updateFloat(String columnName, float x) throws SQLException { 693 } 694 updateInt(int columnIndex, int x)695 public void updateInt(int columnIndex, int x) throws SQLException { 696 } 697 updateInt(String columnName, int x)698 public void updateInt(String columnName, int x) throws SQLException { 699 } 700 updateLong(int columnIndex, long x)701 public void updateLong(int columnIndex, long x) throws SQLException { 702 } 703 updateLong(String columnName, long x)704 public void updateLong(String columnName, long x) throws SQLException { 705 } 706 updateNull(int columnIndex)707 public void updateNull(int columnIndex) throws SQLException { 708 } 709 updateNull(String columnName)710 public void updateNull(String columnName) throws SQLException { 711 } 712 updateObject(int columnIndex, Object x, int scale)713 public void updateObject(int columnIndex, Object x, int scale) 714 throws SQLException { 715 } 716 updateObject(int columnIndex, Object x)717 public void updateObject(int columnIndex, Object x) throws SQLException { 718 } 719 updateObject(String columnName, Object x, int scale)720 public void updateObject(String columnName, Object x, int scale) 721 throws SQLException { 722 } 723 updateObject(String columnName, Object x)724 public void updateObject(String columnName, Object x) throws SQLException { 725 } 726 updateRef(int columnIndex, Ref x)727 public void updateRef(int columnIndex, Ref x) throws SQLException { 728 } 729 updateRef(String columnName, Ref x)730 public void updateRef(String columnName, Ref x) throws SQLException { 731 } 732 updateRow()733 public void updateRow() throws SQLException { 734 } 735 updateShort(int columnIndex, short x)736 public void updateShort(int columnIndex, short x) throws SQLException { 737 } 738 updateShort(String columnName, short x)739 public void updateShort(String columnName, short x) throws SQLException { 740 } 741 updateString(int columnIndex, String x)742 public void updateString(int columnIndex, String x) throws SQLException { 743 } 744 updateString(String columnName, String x)745 public void updateString(String columnName, String x) throws SQLException { 746 } 747 updateTime(int columnIndex, Time x)748 public void updateTime(int columnIndex, Time x) throws SQLException { 749 } 750 updateTime(String columnName, Time x)751 public void updateTime(String columnName, Time x) throws SQLException { 752 } 753 updateTimestamp(int columnIndex, Timestamp x)754 public void updateTimestamp(int columnIndex, Timestamp x) 755 throws SQLException { 756 } 757 updateTimestamp(String columnName, Timestamp x)758 public void updateTimestamp(String columnName, Timestamp x) 759 throws SQLException { 760 } 761 wasNull()762 public boolean wasNull() throws SQLException { 763 return false; 764 } 765 isWrapperFor(Class<?> iface)766 public boolean isWrapperFor(Class<?> iface) throws SQLException { 767 return false; 768 } 769 unwrap(Class<T> iface)770 public <T> T unwrap(Class<T> iface) throws SQLException { 771 return null; 772 } 773 getHoldability()774 public int getHoldability() throws SQLException { 775 return 0; 776 } 777 getNCharacterStream(int columnIndex)778 public Reader getNCharacterStream(int columnIndex) throws SQLException { 779 return null; 780 } 781 getNCharacterStream(String columnLabel)782 public Reader getNCharacterStream(String columnLabel) throws SQLException { 783 return null; 784 } 785 getNClob(int columnIndex)786 public NClob getNClob(int columnIndex) throws SQLException { 787 return null; 788 } 789 getNClob(String columnLabel)790 public NClob getNClob(String columnLabel) throws SQLException { 791 return null; 792 } 793 getNString(int columnIndex)794 public String getNString(int columnIndex) throws SQLException { 795 return null; 796 } 797 getNString(String columnLabel)798 public String getNString(String columnLabel) throws SQLException { 799 return null; 800 } 801 getRowId(int columnIndex)802 public RowId getRowId(int columnIndex) throws SQLException { 803 return null; 804 } 805 getRowId(String columnLabel)806 public RowId getRowId(String columnLabel) throws SQLException { 807 return null; 808 } 809 getSQLXML(int columnIndex)810 public SQLXML getSQLXML(int columnIndex) throws SQLException { 811 return null; 812 } 813 getSQLXML(String columnLabel)814 public SQLXML getSQLXML(String columnLabel) throws SQLException { 815 return null; 816 } 817 isClosed()818 public boolean isClosed() throws SQLException { 819 return false; 820 } 821 updateAsciiStream(int columnIndex, InputStream x, long length)822 public void updateAsciiStream(int columnIndex, InputStream x, long length) 823 throws SQLException { 824 825 } 826 updateAsciiStream(String columnLabel, InputStream x, long length)827 public void updateAsciiStream(String columnLabel, InputStream x, long length) 828 throws SQLException { 829 830 } 831 updateAsciiStream(int columnIndex, InputStream x)832 public void updateAsciiStream(int columnIndex, InputStream x) 833 throws SQLException { 834 835 } 836 updateAsciiStream(String columnLabel, InputStream x)837 public void updateAsciiStream(String columnLabel, InputStream x) 838 throws SQLException { 839 840 } 841 updateBinaryStream(int columnIndex, InputStream x, long length)842 public void updateBinaryStream(int columnIndex, InputStream x, long length) 843 throws SQLException { 844 845 } 846 updateBinaryStream(String columnLabel, InputStream x, long length)847 public void updateBinaryStream(String columnLabel, InputStream x, 848 long length) throws SQLException { 849 850 } 851 updateBinaryStream(int columnIndex, InputStream x)852 public void updateBinaryStream(int columnIndex, InputStream x) 853 throws SQLException { 854 855 } 856 updateBinaryStream(String columnLabel, InputStream x)857 public void updateBinaryStream(String columnLabel, InputStream x) 858 throws SQLException { 859 860 } 861 updateBlob(int columnIndex, InputStream inputStream, long length)862 public void updateBlob(int columnIndex, InputStream inputStream, long length) 863 throws SQLException { 864 865 } 866 updateBlob(String columnLabel, InputStream inputStream, long length)867 public void updateBlob(String columnLabel, InputStream inputStream, 868 long length) throws SQLException { 869 870 } 871 updateBlob(int columnIndex, InputStream inputStream)872 public void updateBlob(int columnIndex, InputStream inputStream) 873 throws SQLException { 874 875 } 876 updateBlob(String columnLabel, InputStream inputStream)877 public void updateBlob(String columnLabel, InputStream inputStream) 878 throws SQLException { 879 880 } 881 updateCharacterStream(int columnIndex, Reader x, long length)882 public void updateCharacterStream(int columnIndex, Reader x, long length) 883 throws SQLException { 884 885 } 886 updateCharacterStream(String columnLabel, Reader reader, long length)887 public void updateCharacterStream(String columnLabel, Reader reader, 888 long length) throws SQLException { 889 890 } 891 updateCharacterStream(int columnIndex, Reader x)892 public void updateCharacterStream(int columnIndex, Reader x) 893 throws SQLException { 894 895 } 896 updateCharacterStream(String columnLabel, Reader reader)897 public void updateCharacterStream(String columnLabel, Reader reader) 898 throws SQLException { 899 900 } 901 updateClob(int columnIndex, Reader reader, long length)902 public void updateClob(int columnIndex, Reader reader, long length) 903 throws SQLException { 904 905 } 906 updateClob(String columnLabel, Reader reader, long length)907 public void updateClob(String columnLabel, Reader reader, long length) 908 throws SQLException { 909 910 } 911 updateClob(int columnIndex, Reader reader)912 public void updateClob(int columnIndex, Reader reader) throws SQLException { 913 914 } 915 updateClob(String columnLabel, Reader reader)916 public void updateClob(String columnLabel, Reader reader) 917 throws SQLException { 918 919 } 920 updateNCharacterStream(int columnIndex, Reader x, long length)921 public void updateNCharacterStream(int columnIndex, Reader x, long length) 922 throws SQLException { 923 924 } 925 updateNCharacterStream(String columnLabel, Reader reader, long length)926 public void updateNCharacterStream(String columnLabel, Reader reader, 927 long length) throws SQLException { 928 929 } 930 updateNCharacterStream(int columnIndex, Reader x)931 public void updateNCharacterStream(int columnIndex, Reader x) 932 throws SQLException { 933 934 } 935 updateNCharacterStream(String columnLabel, Reader reader)936 public void updateNCharacterStream(String columnLabel, Reader reader) 937 throws SQLException { 938 939 } 940 updateNClob(int columnIndex, NClob nClob)941 public void updateNClob(int columnIndex, NClob nClob) throws SQLException { 942 943 } 944 updateNClob(String columnLabel, NClob nClob)945 public void updateNClob(String columnLabel, NClob nClob) 946 throws SQLException { 947 948 } 949 updateNClob(int columnIndex, Reader reader, long length)950 public void updateNClob(int columnIndex, Reader reader, long length) 951 throws SQLException { 952 953 } 954 updateNClob(String columnLabel, Reader reader, long length)955 public void updateNClob(String columnLabel, Reader reader, long length) 956 throws SQLException { 957 958 } 959 updateNClob(int columnIndex, Reader reader)960 public void updateNClob(int columnIndex, Reader reader) throws SQLException { 961 962 } 963 updateNClob(String columnLabel, Reader reader)964 public void updateNClob(String columnLabel, Reader reader) 965 throws SQLException { 966 967 } 968 updateNString(int columnIndex, String nString)969 public void updateNString(int columnIndex, String nString) 970 throws SQLException { 971 972 } 973 updateNString(String columnLabel, String nString)974 public void updateNString(String columnLabel, String nString) 975 throws SQLException { 976 977 } 978 updateRowId(int columnIndex, RowId x)979 public void updateRowId(int columnIndex, RowId x) throws SQLException { 980 981 } 982 updateRowId(String columnLabel, RowId x)983 public void updateRowId(String columnLabel, RowId x) throws SQLException { 984 985 } 986 updateSQLXML(int columnIndex, SQLXML xmlObject)987 public void updateSQLXML(int columnIndex, SQLXML xmlObject) 988 throws SQLException { 989 990 } 991 updateSQLXML(String columnLabel, SQLXML xmlObject)992 public void updateSQLXML(String columnLabel, SQLXML xmlObject) 993 throws SQLException { 994 995 } 996 setAsciiStream(int parameterIndex, InputStream theInputStream)997 public void setAsciiStream(int parameterIndex, InputStream theInputStream) 998 throws SQLException { 999 1000 } 1001 setAsciiStream(String parameterName, InputStream theInputStream)1002 public void setAsciiStream(String parameterName, InputStream theInputStream) 1003 throws SQLException { 1004 1005 } 1006 setAsciiStream(String parameterName, InputStream theInputStream, int length)1007 public void setAsciiStream(String parameterName, 1008 InputStream theInputStream, int length) throws SQLException { 1009 1010 } 1011 setBigDecimal(String parameterName, BigDecimal theBigDecimal)1012 public void setBigDecimal(String parameterName, BigDecimal theBigDecimal) 1013 throws SQLException { 1014 1015 } 1016 setBinaryStream(int parameterIndex, InputStream theInputStream)1017 public void setBinaryStream(int parameterIndex, InputStream theInputStream) 1018 throws SQLException { 1019 1020 } 1021 setBinaryStream(String parameterName, InputStream theInputStream)1022 public void setBinaryStream(String parameterName, InputStream theInputStream) 1023 throws SQLException { 1024 1025 } 1026 setBinaryStream(String parameterName, InputStream theInputStream, int length)1027 public void setBinaryStream(String parameterName, 1028 InputStream theInputStream, int length) throws SQLException { 1029 1030 } 1031 setBlob(int parameterIndex, InputStream theInputStream)1032 public void setBlob(int parameterIndex, InputStream theInputStream) 1033 throws SQLException { 1034 1035 } 1036 setBlob(int parameterIndex, InputStream theInputStream, long length)1037 public void setBlob(int parameterIndex, InputStream theInputStream, 1038 long length) throws SQLException { 1039 1040 } 1041 setBlob(String parameterName, InputStream theInputStream)1042 public void setBlob(String parameterName, InputStream theInputStream) 1043 throws SQLException { 1044 1045 } 1046 setBlob(String parameterName, InputStream theInputStream, long length)1047 public void setBlob(String parameterName, InputStream theInputStream, 1048 long length) throws SQLException { 1049 1050 } 1051 setBlob(String parameterName, Blob theBlob)1052 public void setBlob(String parameterName, Blob theBlob) throws SQLException { 1053 1054 } 1055 setBoolean(String parameterName, boolean theBoolean)1056 public void setBoolean(String parameterName, boolean theBoolean) 1057 throws SQLException { 1058 1059 } 1060 setByte(String parameterName, byte theByte)1061 public void setByte(String parameterName, byte theByte) throws SQLException { 1062 1063 } 1064 setBytes(String parametername, byte[] theByteArray)1065 public void setBytes(String parametername, byte[] theByteArray) 1066 throws SQLException { 1067 1068 } 1069 setCharacterStream(int parameterIndex, Reader theReader)1070 public void setCharacterStream(int parameterIndex, Reader theReader) 1071 throws SQLException { 1072 1073 } 1074 setCharacterStream(String parameterName, Reader theReader)1075 public void setCharacterStream(String parameterName, Reader theReader) 1076 throws SQLException { 1077 1078 } 1079 setCharacterStream(String parameterName, Reader theReader, int length)1080 public void setCharacterStream(String parameterName, Reader theReader, 1081 int length) throws SQLException { 1082 1083 } 1084 setClob(int parameterIndex, Reader theReader)1085 public void setClob(int parameterIndex, Reader theReader) 1086 throws SQLException { 1087 1088 } 1089 setClob(int parameterIndex, Reader theReader, long length)1090 public void setClob(int parameterIndex, Reader theReader, long length) 1091 throws SQLException { 1092 1093 } 1094 setClob(String parameterName, Reader theReader)1095 public void setClob(String parameterName, Reader theReader) 1096 throws SQLException { 1097 1098 } 1099 setClob(String parameterName, Reader theReader, long length)1100 public void setClob(String parameterName, Reader theReader, long length) 1101 throws SQLException { 1102 1103 } 1104 setDate(String parameterName, Date theDate)1105 public void setDate(String parameterName, Date theDate) throws SQLException { 1106 1107 } 1108 setDate(String parameterName, Date theDate, Calendar theCalendar)1109 public void setDate(String parameterName, Date theDate, Calendar theCalendar) 1110 throws SQLException { 1111 1112 } 1113 setDouble(String parameterName, double theDouble)1114 public void setDouble(String parameterName, double theDouble) 1115 throws SQLException { 1116 1117 } 1118 setFloat(String parameterName, float theFloat)1119 public void setFloat(String parameterName, float theFloat) 1120 throws SQLException { 1121 1122 } 1123 setInt(String parameterName, int theInteger)1124 public void setInt(String parameterName, int theInteger) 1125 throws SQLException { 1126 1127 } 1128 setLong(String parameterName, long theLong)1129 public void setLong(String parameterName, long theLong) throws SQLException { 1130 1131 } 1132 setNCharacterStream(int parameterIndex, Reader theReader)1133 public void setNCharacterStream(int parameterIndex, Reader theReader) 1134 throws SQLException { 1135 1136 } 1137 setNCharacterStream(int parameterIndex, Reader theReader, long length)1138 public void setNCharacterStream(int parameterIndex, Reader theReader, 1139 long length) throws SQLException { 1140 1141 } 1142 setNCharacterStream(String parameterName, Reader theReader)1143 public void setNCharacterStream(String parameterName, Reader theReader) 1144 throws SQLException { 1145 1146 } 1147 setNCharacterStream(String parameterName, Reader theReader, long length)1148 public void setNCharacterStream(String parameterName, Reader theReader, 1149 long length) throws SQLException { 1150 1151 } 1152 setNClob(int parameterIndex, NClob theNClob)1153 public void setNClob(int parameterIndex, NClob theNClob) 1154 throws SQLException { 1155 1156 } 1157 setNClob(int parameterIndex, Reader theReader)1158 public void setNClob(int parameterIndex, Reader theReader) 1159 throws SQLException { 1160 1161 } 1162 setNClob(int parameterIndex, Reader theReader, long length)1163 public void setNClob(int parameterIndex, Reader theReader, long length) 1164 throws SQLException { 1165 1166 } 1167 setNClob(String parameterName, Reader theReader)1168 public void setNClob(String parameterName, Reader theReader) 1169 throws SQLException { 1170 1171 } 1172 setNClob(String parameterName, Reader theReader, long length)1173 public void setNClob(String parameterName, Reader theReader, long length) 1174 throws SQLException { 1175 1176 } 1177 setNString(int parameterIndex, String theNString)1178 public void setNString(int parameterIndex, String theNString) 1179 throws SQLException { 1180 1181 } 1182 setNString(String parameterName, String theNString)1183 public void setNString(String parameterName, String theNString) 1184 throws SQLException { 1185 1186 } 1187 setNull(String parameterName, int sqlType)1188 public void setNull(String parameterName, int sqlType) throws SQLException { 1189 1190 } 1191 setNull(String parameterName, int sqlType, String typeName)1192 public void setNull(String parameterName, int sqlType, String typeName) 1193 throws SQLException { 1194 1195 } 1196 setObject(String parameterName, Object theObject)1197 public void setObject(String parameterName, Object theObject) 1198 throws SQLException { 1199 1200 } 1201 setObject(String parameterName, Object theObject, int targetSqlType)1202 public void setObject(String parameterName, Object theObject, 1203 int targetSqlType) throws SQLException { 1204 1205 } 1206 setObject(String parameterName, Object theObject, int targetSqlType, int scale)1207 public void setObject(String parameterName, Object theObject, 1208 int targetSqlType, int scale) throws SQLException { 1209 1210 } 1211 setRowId(int parameterIndex, RowId theRowId)1212 public void setRowId(int parameterIndex, RowId theRowId) 1213 throws SQLException { 1214 1215 } 1216 setRowId(String parameterName, RowId theRowId)1217 public void setRowId(String parameterName, RowId theRowId) 1218 throws SQLException { 1219 1220 } 1221 setSQLXML(int parameterIndex, SQLXML theSQLXML)1222 public void setSQLXML(int parameterIndex, SQLXML theSQLXML) 1223 throws SQLException { 1224 1225 } 1226 setSQLXML(String parameterName, SQLXML theSQLXML)1227 public void setSQLXML(String parameterName, SQLXML theSQLXML) 1228 throws SQLException { 1229 1230 } 1231 setShort(String parameterName, short theShort)1232 public void setShort(String parameterName, short theShort) 1233 throws SQLException { 1234 1235 } 1236 setString(String parameterName, String theString)1237 public void setString(String parameterName, String theString) 1238 throws SQLException { 1239 1240 } 1241 setTime(String parameterName, Time theTime)1242 public void setTime(String parameterName, Time theTime) throws SQLException { 1243 1244 } 1245 setTime(String parameterName, Time theTime, Calendar theCalendar)1246 public void setTime(String parameterName, Time theTime, Calendar theCalendar) 1247 throws SQLException { 1248 1249 } 1250 setTimestamp(String parameterName, Timestamp theTimestamp)1251 public void setTimestamp(String parameterName, Timestamp theTimestamp) 1252 throws SQLException { 1253 1254 } 1255 setTimestamp(String parameterName, Timestamp theTimestamp, Calendar theCalendar)1256 public void setTimestamp(String parameterName, Timestamp theTimestamp, 1257 Calendar theCalendar) throws SQLException { 1258 1259 } 1260 setURL(int parameterIndex, URL theURL)1261 public void setURL(int parameterIndex, URL theURL) throws SQLException { 1262 1263 } 1264 setClob(String parameterName, Clob x)1265 public void setClob(String parameterName, Clob x) throws SQLException { 1266 1267 } 1268 setNClob(String parameterName, NClob value)1269 public void setNClob(String parameterName, NClob value) throws SQLException { 1270 1271 } 1272 } 1273