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