java/jdbc-loopback-driver/src/main/java/info/globalcode/jdbc/loopback/AbstractResultSet.java
author František Kučera <franta-hg@frantovo.cz>
Thu, 24 Oct 2019 21:43:08 +0200
branchv_0
changeset 250 aae5009bd0af
parent 237 7e08730da258
permissions -rw-r--r--
fix license version: GNU GPLv3
     1 /**
     2  * SQL-DK
     3  * Copyright © 2014 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 3 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    16  */
    17 package info.globalcode.jdbc.loopback;
    18 
    19 import java.io.InputStream;
    20 import java.io.Reader;
    21 import java.math.BigDecimal;
    22 import java.net.URL;
    23 import java.sql.Array;
    24 import java.sql.Blob;
    25 import java.sql.Clob;
    26 import java.sql.Date;
    27 import java.sql.NClob;
    28 import java.sql.Ref;
    29 import java.sql.RowId;
    30 import java.sql.SQLException;
    31 import java.sql.SQLWarning;
    32 import java.sql.SQLXML;
    33 import java.sql.Statement;
    34 import java.sql.Time;
    35 import java.sql.Timestamp;
    36 import java.util.Calendar;
    37 import java.util.Map;
    38 
    39 /**
    40  *
    41  * @author Ing. František Kučera (frantovo.cz)
    42  */
    43 public abstract class AbstractResultSet implements java.sql.ResultSet {
    44 
    45 	@Override
    46 	public boolean next() throws SQLException {
    47 		throw new SQLException("Not supported yet.");
    48 	}
    49 
    50 	@Override
    51 	public void close() throws SQLException {
    52 		throw new SQLException("Not supported yet.");
    53 	}
    54 
    55 	@Override
    56 	public boolean wasNull() throws SQLException {
    57 		throw new SQLException("Not supported yet.");
    58 	}
    59 
    60 	@Override
    61 	public String getString(int columnIndex) throws SQLException {
    62 		throw new SQLException("Not supported yet.");
    63 	}
    64 
    65 	@Override
    66 	public boolean getBoolean(int columnIndex) throws SQLException {
    67 		throw new SQLException("Not supported yet.");
    68 	}
    69 
    70 	@Override
    71 	public byte getByte(int columnIndex) throws SQLException {
    72 		throw new SQLException("Not supported yet.");
    73 	}
    74 
    75 	@Override
    76 	public short getShort(int columnIndex) throws SQLException {
    77 		throw new SQLException("Not supported yet.");
    78 	}
    79 
    80 	@Override
    81 	public int getInt(int columnIndex) throws SQLException {
    82 		throw new SQLException("Not supported yet.");
    83 	}
    84 
    85 	@Override
    86 	public long getLong(int columnIndex) throws SQLException {
    87 		throw new SQLException("Not supported yet.");
    88 	}
    89 
    90 	@Override
    91 	public float getFloat(int columnIndex) throws SQLException {
    92 		throw new SQLException("Not supported yet.");
    93 	}
    94 
    95 	@Override
    96 	public double getDouble(int columnIndex) throws SQLException {
    97 		throw new SQLException("Not supported yet.");
    98 	}
    99 
   100 	@Override
   101 	public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
   102 		throw new SQLException("Not supported yet.");
   103 	}
   104 
   105 	@Override
   106 	public byte[] getBytes(int columnIndex) throws SQLException {
   107 		throw new SQLException("Not supported yet.");
   108 	}
   109 
   110 	@Override
   111 	public Date getDate(int columnIndex) throws SQLException {
   112 		throw new SQLException("Not supported yet.");
   113 	}
   114 
   115 	@Override
   116 	public Time getTime(int columnIndex) throws SQLException {
   117 		throw new SQLException("Not supported yet.");
   118 	}
   119 
   120 	@Override
   121 	public Timestamp getTimestamp(int columnIndex) throws SQLException {
   122 		throw new SQLException("Not supported yet.");
   123 	}
   124 
   125 	@Override
   126 	public InputStream getAsciiStream(int columnIndex) throws SQLException {
   127 		throw new SQLException("Not supported yet.");
   128 	}
   129 
   130 	@Override
   131 	public InputStream getUnicodeStream(int columnIndex) throws SQLException {
   132 		throw new SQLException("Not supported yet.");
   133 	}
   134 
   135 	@Override
   136 	public InputStream getBinaryStream(int columnIndex) throws SQLException {
   137 		throw new SQLException("Not supported yet.");
   138 	}
   139 
   140 	@Override
   141 	public String getString(String columnLabel) throws SQLException {
   142 		throw new SQLException("Not supported yet.");
   143 	}
   144 
   145 	@Override
   146 	public boolean getBoolean(String columnLabel) throws SQLException {
   147 		throw new SQLException("Not supported yet.");
   148 	}
   149 
   150 	@Override
   151 	public byte getByte(String columnLabel) throws SQLException {
   152 		throw new SQLException("Not supported yet.");
   153 	}
   154 
   155 	@Override
   156 	public short getShort(String columnLabel) throws SQLException {
   157 		throw new SQLException("Not supported yet.");
   158 	}
   159 
   160 	@Override
   161 	public int getInt(String columnLabel) throws SQLException {
   162 		throw new SQLException("Not supported yet.");
   163 	}
   164 
   165 	@Override
   166 	public long getLong(String columnLabel) throws SQLException {
   167 		throw new SQLException("Not supported yet.");
   168 	}
   169 
   170 	@Override
   171 	public float getFloat(String columnLabel) throws SQLException {
   172 		throw new SQLException("Not supported yet.");
   173 	}
   174 
   175 	@Override
   176 	public double getDouble(String columnLabel) throws SQLException {
   177 		throw new SQLException("Not supported yet.");
   178 	}
   179 
   180 	@Override
   181 	public BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException {
   182 		throw new SQLException("Not supported yet.");
   183 	}
   184 
   185 	@Override
   186 	public byte[] getBytes(String columnLabel) throws SQLException {
   187 		throw new SQLException("Not supported yet.");
   188 	}
   189 
   190 	@Override
   191 	public Date getDate(String columnLabel) throws SQLException {
   192 		throw new SQLException("Not supported yet.");
   193 	}
   194 
   195 	@Override
   196 	public Time getTime(String columnLabel) throws SQLException {
   197 		throw new SQLException("Not supported yet.");
   198 	}
   199 
   200 	@Override
   201 	public Timestamp getTimestamp(String columnLabel) throws SQLException {
   202 		throw new SQLException("Not supported yet.");
   203 	}
   204 
   205 	@Override
   206 	public InputStream getAsciiStream(String columnLabel) throws SQLException {
   207 		throw new SQLException("Not supported yet.");
   208 	}
   209 
   210 	@Override
   211 	public InputStream getUnicodeStream(String columnLabel) throws SQLException {
   212 		throw new SQLException("Not supported yet.");
   213 	}
   214 
   215 	@Override
   216 	public InputStream getBinaryStream(String columnLabel) throws SQLException {
   217 		throw new SQLException("Not supported yet.");
   218 	}
   219 
   220 	@Override
   221 	public SQLWarning getWarnings() throws SQLException {
   222 		throw new SQLException("Not supported yet.");
   223 	}
   224 
   225 	@Override
   226 	public void clearWarnings() throws SQLException {
   227 		throw new SQLException("Not supported yet.");
   228 	}
   229 
   230 	@Override
   231 	public String getCursorName() throws SQLException {
   232 		throw new SQLException("Not supported yet.");
   233 	}
   234 
   235 	@Override
   236 	public java.sql.ResultSetMetaData getMetaData() throws SQLException {
   237 		throw new SQLException("Not supported yet.");
   238 	}
   239 
   240 	@Override
   241 	public Object getObject(int columnIndex) throws SQLException {
   242 		throw new SQLException("Not supported yet.");
   243 	}
   244 
   245 	@Override
   246 	public Object getObject(String columnLabel) throws SQLException {
   247 		throw new SQLException("Not supported yet.");
   248 	}
   249 
   250 	@Override
   251 	public int findColumn(String columnLabel) throws SQLException {
   252 		throw new SQLException("Not supported yet.");
   253 	}
   254 
   255 	@Override
   256 	public Reader getCharacterStream(int columnIndex) throws SQLException {
   257 		throw new SQLException("Not supported yet.");
   258 	}
   259 
   260 	@Override
   261 	public Reader getCharacterStream(String columnLabel) throws SQLException {
   262 		throw new SQLException("Not supported yet.");
   263 	}
   264 
   265 	@Override
   266 	public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
   267 		throw new SQLException("Not supported yet.");
   268 	}
   269 
   270 	@Override
   271 	public BigDecimal getBigDecimal(String columnLabel) throws SQLException {
   272 		throw new SQLException("Not supported yet.");
   273 	}
   274 
   275 	@Override
   276 	public boolean isBeforeFirst() throws SQLException {
   277 		throw new SQLException("Not supported yet.");
   278 	}
   279 
   280 	@Override
   281 	public boolean isAfterLast() throws SQLException {
   282 		throw new SQLException("Not supported yet.");
   283 	}
   284 
   285 	@Override
   286 	public boolean isFirst() throws SQLException {
   287 		throw new SQLException("Not supported yet.");
   288 	}
   289 
   290 	@Override
   291 	public boolean isLast() throws SQLException {
   292 		throw new SQLException("Not supported yet.");
   293 	}
   294 
   295 	@Override
   296 	public void beforeFirst() throws SQLException {
   297 		throw new SQLException("Not supported yet.");
   298 	}
   299 
   300 	@Override
   301 	public void afterLast() throws SQLException {
   302 		throw new SQLException("Not supported yet.");
   303 	}
   304 
   305 	@Override
   306 	public boolean first() throws SQLException {
   307 		throw new SQLException("Not supported yet.");
   308 	}
   309 
   310 	@Override
   311 	public boolean last() throws SQLException {
   312 		throw new SQLException("Not supported yet.");
   313 	}
   314 
   315 	@Override
   316 	public int getRow() throws SQLException {
   317 		throw new SQLException("Not supported yet.");
   318 	}
   319 
   320 	@Override
   321 	public boolean absolute(int row) throws SQLException {
   322 		throw new SQLException("Not supported yet.");
   323 	}
   324 
   325 	@Override
   326 	public boolean relative(int rows) throws SQLException {
   327 		throw new SQLException("Not supported yet.");
   328 	}
   329 
   330 	@Override
   331 	public boolean previous() throws SQLException {
   332 		throw new SQLException("Not supported yet.");
   333 	}
   334 
   335 	@Override
   336 	public void setFetchDirection(int direction) throws SQLException {
   337 		throw new SQLException("Not supported yet.");
   338 	}
   339 
   340 	@Override
   341 	public int getFetchDirection() throws SQLException {
   342 		throw new SQLException("Not supported yet.");
   343 	}
   344 
   345 	@Override
   346 	public void setFetchSize(int rows) throws SQLException {
   347 		throw new SQLException("Not supported yet.");
   348 	}
   349 
   350 	@Override
   351 	public int getFetchSize() throws SQLException {
   352 		throw new SQLException("Not supported yet.");
   353 	}
   354 
   355 	@Override
   356 	public int getType() throws SQLException {
   357 		throw new SQLException("Not supported yet.");
   358 	}
   359 
   360 	@Override
   361 	public int getConcurrency() throws SQLException {
   362 		throw new SQLException("Not supported yet.");
   363 	}
   364 
   365 	@Override
   366 	public boolean rowUpdated() throws SQLException {
   367 		throw new SQLException("Not supported yet.");
   368 	}
   369 
   370 	@Override
   371 	public boolean rowInserted() throws SQLException {
   372 		throw new SQLException("Not supported yet.");
   373 	}
   374 
   375 	@Override
   376 	public boolean rowDeleted() throws SQLException {
   377 		throw new SQLException("Not supported yet.");
   378 	}
   379 
   380 	@Override
   381 	public void updateNull(int columnIndex) throws SQLException {
   382 		throw new SQLException("Not supported yet.");
   383 	}
   384 
   385 	@Override
   386 	public void updateBoolean(int columnIndex, boolean x) throws SQLException {
   387 		throw new SQLException("Not supported yet.");
   388 	}
   389 
   390 	@Override
   391 	public void updateByte(int columnIndex, byte x) throws SQLException {
   392 		throw new SQLException("Not supported yet.");
   393 	}
   394 
   395 	@Override
   396 	public void updateShort(int columnIndex, short x) throws SQLException {
   397 		throw new SQLException("Not supported yet.");
   398 	}
   399 
   400 	@Override
   401 	public void updateInt(int columnIndex, int x) throws SQLException {
   402 		throw new SQLException("Not supported yet.");
   403 	}
   404 
   405 	@Override
   406 	public void updateLong(int columnIndex, long x) throws SQLException {
   407 		throw new SQLException("Not supported yet.");
   408 	}
   409 
   410 	@Override
   411 	public void updateFloat(int columnIndex, float x) throws SQLException {
   412 		throw new SQLException("Not supported yet.");
   413 	}
   414 
   415 	@Override
   416 	public void updateDouble(int columnIndex, double x) throws SQLException {
   417 		throw new SQLException("Not supported yet.");
   418 	}
   419 
   420 	@Override
   421 	public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
   422 		throw new SQLException("Not supported yet.");
   423 	}
   424 
   425 	@Override
   426 	public void updateString(int columnIndex, String x) throws SQLException {
   427 		throw new SQLException("Not supported yet.");
   428 	}
   429 
   430 	@Override
   431 	public void updateBytes(int columnIndex, byte[] x) throws SQLException {
   432 		throw new SQLException("Not supported yet.");
   433 	}
   434 
   435 	@Override
   436 	public void updateDate(int columnIndex, Date x) throws SQLException {
   437 		throw new SQLException("Not supported yet.");
   438 	}
   439 
   440 	@Override
   441 	public void updateTime(int columnIndex, Time x) throws SQLException {
   442 		throw new SQLException("Not supported yet.");
   443 	}
   444 
   445 	@Override
   446 	public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {
   447 		throw new SQLException("Not supported yet.");
   448 	}
   449 
   450 	@Override
   451 	public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {
   452 		throw new SQLException("Not supported yet.");
   453 	}
   454 
   455 	@Override
   456 	public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {
   457 		throw new SQLException("Not supported yet.");
   458 	}
   459 
   460 	@Override
   461 	public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {
   462 		throw new SQLException("Not supported yet.");
   463 	}
   464 
   465 	@Override
   466 	public void updateObject(int columnIndex, Object x, int scaleOrLength) throws SQLException {
   467 		throw new SQLException("Not supported yet.");
   468 	}
   469 
   470 	@Override
   471 	public void updateObject(int columnIndex, Object x) throws SQLException {
   472 		throw new SQLException("Not supported yet.");
   473 	}
   474 
   475 	@Override
   476 	public void updateNull(String columnLabel) throws SQLException {
   477 		throw new SQLException("Not supported yet.");
   478 	}
   479 
   480 	@Override
   481 	public void updateBoolean(String columnLabel, boolean x) throws SQLException {
   482 		throw new SQLException("Not supported yet.");
   483 	}
   484 
   485 	@Override
   486 	public void updateByte(String columnLabel, byte x) throws SQLException {
   487 		throw new SQLException("Not supported yet.");
   488 	}
   489 
   490 	@Override
   491 	public void updateShort(String columnLabel, short x) throws SQLException {
   492 		throw new SQLException("Not supported yet.");
   493 	}
   494 
   495 	@Override
   496 	public void updateInt(String columnLabel, int x) throws SQLException {
   497 		throw new SQLException("Not supported yet.");
   498 	}
   499 
   500 	@Override
   501 	public void updateLong(String columnLabel, long x) throws SQLException {
   502 		throw new SQLException("Not supported yet.");
   503 	}
   504 
   505 	@Override
   506 	public void updateFloat(String columnLabel, float x) throws SQLException {
   507 		throw new SQLException("Not supported yet.");
   508 	}
   509 
   510 	@Override
   511 	public void updateDouble(String columnLabel, double x) throws SQLException {
   512 		throw new SQLException("Not supported yet.");
   513 	}
   514 
   515 	@Override
   516 	public void updateBigDecimal(String columnLabel, BigDecimal x) throws SQLException {
   517 		throw new SQLException("Not supported yet.");
   518 	}
   519 
   520 	@Override
   521 	public void updateString(String columnLabel, String x) throws SQLException {
   522 		throw new SQLException("Not supported yet.");
   523 	}
   524 
   525 	@Override
   526 	public void updateBytes(String columnLabel, byte[] x) throws SQLException {
   527 		throw new SQLException("Not supported yet.");
   528 	}
   529 
   530 	@Override
   531 	public void updateDate(String columnLabel, Date x) throws SQLException {
   532 		throw new SQLException("Not supported yet.");
   533 	}
   534 
   535 	@Override
   536 	public void updateTime(String columnLabel, Time x) throws SQLException {
   537 		throw new SQLException("Not supported yet.");
   538 	}
   539 
   540 	@Override
   541 	public void updateTimestamp(String columnLabel, Timestamp x) throws SQLException {
   542 		throw new SQLException("Not supported yet.");
   543 	}
   544 
   545 	@Override
   546 	public void updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException {
   547 		throw new SQLException("Not supported yet.");
   548 	}
   549 
   550 	@Override
   551 	public void updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException {
   552 		throw new SQLException("Not supported yet.");
   553 	}
   554 
   555 	@Override
   556 	public void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException {
   557 		throw new SQLException("Not supported yet.");
   558 	}
   559 
   560 	@Override
   561 	public void updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException {
   562 		throw new SQLException("Not supported yet.");
   563 	}
   564 
   565 	@Override
   566 	public void updateObject(String columnLabel, Object x) throws SQLException {
   567 		throw new SQLException("Not supported yet.");
   568 	}
   569 
   570 	@Override
   571 	public void insertRow() throws SQLException {
   572 		throw new SQLException("Not supported yet.");
   573 	}
   574 
   575 	@Override
   576 	public void updateRow() throws SQLException {
   577 		throw new SQLException("Not supported yet.");
   578 	}
   579 
   580 	@Override
   581 	public void deleteRow() throws SQLException {
   582 		throw new SQLException("Not supported yet.");
   583 	}
   584 
   585 	@Override
   586 	public void refreshRow() throws SQLException {
   587 		throw new SQLException("Not supported yet.");
   588 	}
   589 
   590 	@Override
   591 	public void cancelRowUpdates() throws SQLException {
   592 		throw new SQLException("Not supported yet.");
   593 	}
   594 
   595 	@Override
   596 	public void moveToInsertRow() throws SQLException {
   597 		throw new SQLException("Not supported yet.");
   598 	}
   599 
   600 	@Override
   601 	public void moveToCurrentRow() throws SQLException {
   602 		throw new SQLException("Not supported yet.");
   603 	}
   604 
   605 	@Override
   606 	public Statement getStatement() throws SQLException {
   607 		throw new SQLException("Not supported yet.");
   608 	}
   609 
   610 	@Override
   611 	public Object getObject(int columnIndex, Map<String, Class<?>> map) throws SQLException {
   612 		throw new SQLException("Not supported yet.");
   613 	}
   614 
   615 	@Override
   616 	public Ref getRef(int columnIndex) throws SQLException {
   617 		throw new SQLException("Not supported yet.");
   618 	}
   619 
   620 	@Override
   621 	public Blob getBlob(int columnIndex) throws SQLException {
   622 		throw new SQLException("Not supported yet.");
   623 	}
   624 
   625 	@Override
   626 	public Clob getClob(int columnIndex) throws SQLException {
   627 		throw new SQLException("Not supported yet.");
   628 	}
   629 
   630 	@Override
   631 	public Array getArray(int columnIndex) throws SQLException {
   632 		throw new SQLException("Not supported yet.");
   633 	}
   634 
   635 	@Override
   636 	public Object getObject(String columnLabel, Map<String, Class<?>> map) throws SQLException {
   637 		throw new SQLException("Not supported yet.");
   638 	}
   639 
   640 	@Override
   641 	public Ref getRef(String columnLabel) throws SQLException {
   642 		throw new SQLException("Not supported yet.");
   643 	}
   644 
   645 	@Override
   646 	public Blob getBlob(String columnLabel) throws SQLException {
   647 		throw new SQLException("Not supported yet.");
   648 	}
   649 
   650 	@Override
   651 	public Clob getClob(String columnLabel) throws SQLException {
   652 		throw new SQLException("Not supported yet.");
   653 	}
   654 
   655 	@Override
   656 	public Array getArray(String columnLabel) throws SQLException {
   657 		throw new SQLException("Not supported yet.");
   658 	}
   659 
   660 	@Override
   661 	public Date getDate(int columnIndex, Calendar cal) throws SQLException {
   662 		throw new SQLException("Not supported yet.");
   663 	}
   664 
   665 	@Override
   666 	public Date getDate(String columnLabel, Calendar cal) throws SQLException {
   667 		throw new SQLException("Not supported yet.");
   668 	}
   669 
   670 	@Override
   671 	public Time getTime(int columnIndex, Calendar cal) throws SQLException {
   672 		throw new SQLException("Not supported yet.");
   673 	}
   674 
   675 	@Override
   676 	public Time getTime(String columnLabel, Calendar cal) throws SQLException {
   677 		throw new SQLException("Not supported yet.");
   678 	}
   679 
   680 	@Override
   681 	public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {
   682 		throw new SQLException("Not supported yet.");
   683 	}
   684 
   685 	@Override
   686 	public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException {
   687 		throw new SQLException("Not supported yet.");
   688 	}
   689 
   690 	@Override
   691 	public URL getURL(int columnIndex) throws SQLException {
   692 		throw new SQLException("Not supported yet.");
   693 	}
   694 
   695 	@Override
   696 	public URL getURL(String columnLabel) throws SQLException {
   697 		throw new SQLException("Not supported yet.");
   698 	}
   699 
   700 	@Override
   701 	public void updateRef(int columnIndex, Ref x) throws SQLException {
   702 		throw new SQLException("Not supported yet.");
   703 	}
   704 
   705 	@Override
   706 	public void updateRef(String columnLabel, Ref x) throws SQLException {
   707 		throw new SQLException("Not supported yet.");
   708 	}
   709 
   710 	@Override
   711 	public void updateBlob(int columnIndex, Blob x) throws SQLException {
   712 		throw new SQLException("Not supported yet.");
   713 	}
   714 
   715 	@Override
   716 	public void updateBlob(String columnLabel, Blob x) throws SQLException {
   717 		throw new SQLException("Not supported yet.");
   718 	}
   719 
   720 	@Override
   721 	public void updateClob(int columnIndex, Clob x) throws SQLException {
   722 		throw new SQLException("Not supported yet.");
   723 	}
   724 
   725 	@Override
   726 	public void updateClob(String columnLabel, Clob x) throws SQLException {
   727 		throw new SQLException("Not supported yet.");
   728 	}
   729 
   730 	@Override
   731 	public void updateArray(int columnIndex, Array x) throws SQLException {
   732 		throw new SQLException("Not supported yet.");
   733 	}
   734 
   735 	@Override
   736 	public void updateArray(String columnLabel, Array x) throws SQLException {
   737 		throw new SQLException("Not supported yet.");
   738 	}
   739 
   740 	@Override
   741 	public RowId getRowId(int columnIndex) throws SQLException {
   742 		throw new SQLException("Not supported yet.");
   743 	}
   744 
   745 	@Override
   746 	public RowId getRowId(String columnLabel) throws SQLException {
   747 		throw new SQLException("Not supported yet.");
   748 	}
   749 
   750 	@Override
   751 	public void updateRowId(int columnIndex, RowId x) throws SQLException {
   752 		throw new SQLException("Not supported yet.");
   753 	}
   754 
   755 	@Override
   756 	public void updateRowId(String columnLabel, RowId x) throws SQLException {
   757 		throw new SQLException("Not supported yet.");
   758 	}
   759 
   760 	@Override
   761 	public int getHoldability() throws SQLException {
   762 		throw new SQLException("Not supported yet.");
   763 	}
   764 
   765 	@Override
   766 	public boolean isClosed() throws SQLException {
   767 		throw new SQLException("Not supported yet.");
   768 	}
   769 
   770 	@Override
   771 	public void updateNString(int columnIndex, String nString) throws SQLException {
   772 		throw new SQLException("Not supported yet.");
   773 	}
   774 
   775 	@Override
   776 	public void updateNString(String columnLabel, String nString) throws SQLException {
   777 		throw new SQLException("Not supported yet.");
   778 	}
   779 
   780 	@Override
   781 	public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
   782 		throw new SQLException("Not supported yet.");
   783 	}
   784 
   785 	@Override
   786 	public void updateNClob(String columnLabel, NClob nClob) throws SQLException {
   787 		throw new SQLException("Not supported yet.");
   788 	}
   789 
   790 	@Override
   791 	public NClob getNClob(int columnIndex) throws SQLException {
   792 		throw new SQLException("Not supported yet.");
   793 	}
   794 
   795 	@Override
   796 	public NClob getNClob(String columnLabel) throws SQLException {
   797 		throw new SQLException("Not supported yet.");
   798 	}
   799 
   800 	@Override
   801 	public SQLXML getSQLXML(int columnIndex) throws SQLException {
   802 		throw new SQLException("Not supported yet.");
   803 	}
   804 
   805 	@Override
   806 	public SQLXML getSQLXML(String columnLabel) throws SQLException {
   807 		throw new SQLException("Not supported yet.");
   808 	}
   809 
   810 	@Override
   811 	public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException {
   812 		throw new SQLException("Not supported yet.");
   813 	}
   814 
   815 	@Override
   816 	public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException {
   817 		throw new SQLException("Not supported yet.");
   818 	}
   819 
   820 	@Override
   821 	public String getNString(int columnIndex) throws SQLException {
   822 		throw new SQLException("Not supported yet.");
   823 	}
   824 
   825 	@Override
   826 	public String getNString(String columnLabel) throws SQLException {
   827 		throw new SQLException("Not supported yet.");
   828 	}
   829 
   830 	@Override
   831 	public Reader getNCharacterStream(int columnIndex) throws SQLException {
   832 		throw new SQLException("Not supported yet.");
   833 	}
   834 
   835 	@Override
   836 	public Reader getNCharacterStream(String columnLabel) throws SQLException {
   837 		throw new SQLException("Not supported yet.");
   838 	}
   839 
   840 	@Override
   841 	public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
   842 		throw new SQLException("Not supported yet.");
   843 	}
   844 
   845 	@Override
   846 	public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
   847 		throw new SQLException("Not supported yet.");
   848 	}
   849 
   850 	@Override
   851 	public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException {
   852 		throw new SQLException("Not supported yet.");
   853 	}
   854 
   855 	@Override
   856 	public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {
   857 		throw new SQLException("Not supported yet.");
   858 	}
   859 
   860 	@Override
   861 	public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
   862 		throw new SQLException("Not supported yet.");
   863 	}
   864 
   865 	@Override
   866 	public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException {
   867 		throw new SQLException("Not supported yet.");
   868 	}
   869 
   870 	@Override
   871 	public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException {
   872 		throw new SQLException("Not supported yet.");
   873 	}
   874 
   875 	@Override
   876 	public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
   877 		throw new SQLException("Not supported yet.");
   878 	}
   879 
   880 	@Override
   881 	public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException {
   882 		throw new SQLException("Not supported yet.");
   883 	}
   884 
   885 	@Override
   886 	public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException {
   887 		throw new SQLException("Not supported yet.");
   888 	}
   889 
   890 	@Override
   891 	public void updateClob(int columnIndex, Reader reader, long length) throws SQLException {
   892 		throw new SQLException("Not supported yet.");
   893 	}
   894 
   895 	@Override
   896 	public void updateClob(String columnLabel, Reader reader, long length) throws SQLException {
   897 		throw new SQLException("Not supported yet.");
   898 	}
   899 
   900 	@Override
   901 	public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException {
   902 		throw new SQLException("Not supported yet.");
   903 	}
   904 
   905 	@Override
   906 	public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException {
   907 		throw new SQLException("Not supported yet.");
   908 	}
   909 
   910 	@Override
   911 	public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException {
   912 		throw new SQLException("Not supported yet.");
   913 	}
   914 
   915 	@Override
   916 	public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException {
   917 		throw new SQLException("Not supported yet.");
   918 	}
   919 
   920 	@Override
   921 	public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException {
   922 		throw new SQLException("Not supported yet.");
   923 	}
   924 
   925 	@Override
   926 	public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException {
   927 		throw new SQLException("Not supported yet.");
   928 	}
   929 
   930 	@Override
   931 	public void updateCharacterStream(int columnIndex, Reader x) throws SQLException {
   932 		throw new SQLException("Not supported yet.");
   933 	}
   934 
   935 	@Override
   936 	public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException {
   937 		throw new SQLException("Not supported yet.");
   938 	}
   939 
   940 	@Override
   941 	public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException {
   942 		throw new SQLException("Not supported yet.");
   943 	}
   944 
   945 	@Override
   946 	public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException {
   947 		throw new SQLException("Not supported yet.");
   948 	}
   949 
   950 	@Override
   951 	public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException {
   952 		throw new SQLException("Not supported yet.");
   953 	}
   954 
   955 	@Override
   956 	public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException {
   957 		throw new SQLException("Not supported yet.");
   958 	}
   959 
   960 	@Override
   961 	public void updateClob(int columnIndex, Reader reader) throws SQLException {
   962 		throw new SQLException("Not supported yet.");
   963 	}
   964 
   965 	@Override
   966 	public void updateClob(String columnLabel, Reader reader) throws SQLException {
   967 		throw new SQLException("Not supported yet.");
   968 	}
   969 
   970 	@Override
   971 	public void updateNClob(int columnIndex, Reader reader) throws SQLException {
   972 		throw new SQLException("Not supported yet.");
   973 	}
   974 
   975 	@Override
   976 	public void updateNClob(String columnLabel, Reader reader) throws SQLException {
   977 		throw new SQLException("Not supported yet.");
   978 	}
   979 
   980 	@Override
   981 	public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {
   982 		throw new SQLException("Not supported yet.");
   983 	}
   984 
   985 	@Override
   986 	public <T> T getObject(String columnLabel, Class<T> type) throws SQLException {
   987 		throw new SQLException("Not supported yet.");
   988 	}
   989 
   990 	@Override
   991 	public <T> T unwrap(Class<T> iface) throws SQLException {
   992 		throw new SQLException("Not supported yet.");
   993 	}
   994 
   995 	@Override
   996 	public boolean isWrapperFor(Class<?> iface) throws SQLException {
   997 		throw new SQLException("Not supported yet.");
   998 	}
   999 }