comparison geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/SDEResultSet.java @ 380:0100ebf6630f

Added missing Methodstubs for Java 1.6 compability. geo-backend/trunk@385 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 30 Nov 2009 14:51:09 +0000
parents ff1b7967e6b9
children 12f88239fb33
comparison
equal deleted inserted replaced
379:31595c0a1a33 380:0100ebf6630f
21 import java.net.URL; 21 import java.net.URL;
22 import java.sql.Array; 22 import java.sql.Array;
23 import java.sql.Blob; 23 import java.sql.Blob;
24 import java.sql.Clob; 24 import java.sql.Clob;
25 import java.sql.Date; 25 import java.sql.Date;
26 import java.sql.NClob;
26 import java.sql.Ref; 27 import java.sql.Ref;
27 import java.sql.ResultSetMetaData; 28 import java.sql.ResultSetMetaData;
29 import java.sql.RowId;
28 import java.sql.SQLException; 30 import java.sql.SQLException;
29 import java.sql.SQLWarning; 31 import java.sql.SQLWarning;
32 import java.sql.SQLXML;
30 import java.sql.Statement; 33 import java.sql.Statement;
31 import java.sql.Time; 34 import java.sql.Time;
32 import java.sql.Timestamp; 35 import java.sql.Timestamp;
33 import java.util.ArrayList; 36 import java.util.ArrayList;
34 import java.util.Calendar; 37 import java.util.Calendar;
1150 } 1153 }
1151 } 1154 }
1152 throw new SQLException("Column "+columnName+" does not exist in ResulSet"); 1155 throw new SQLException("Column "+columnName+" does not exist in ResulSet");
1153 } 1156 }
1154 1157
1158 public int getHoldability() throws SQLException {
1159 return 0;
1160 }
1161
1162 public Reader getNCharacterStream(int arg0) throws SQLException {
1163 return null;
1164 }
1165
1166 public Reader getNCharacterStream(String arg0) throws SQLException {
1167 return null;
1168 }
1169
1170 public NClob getNClob(int arg0) throws SQLException {
1171 return null;
1172 }
1173
1174 public NClob getNClob(String arg0) throws SQLException {
1175 return null;
1176 }
1177
1178 public String getNString(int arg0) throws SQLException {
1179 return null;
1180 }
1181
1182 public String getNString(String arg0) throws SQLException {
1183 return null;
1184 }
1185
1186 public RowId getRowId(int arg0) throws SQLException {
1187
1188 return null;
1189 }
1190
1191 public RowId getRowId(String arg0) throws SQLException {
1192
1193 return null;
1194 }
1195
1196 public SQLXML getSQLXML(int arg0) throws SQLException {
1197
1198 return null;
1199 }
1200
1201 public SQLXML getSQLXML(String arg0) throws SQLException {
1202
1203 return null;
1204 }
1205
1206 public boolean isClosed() throws SQLException {
1207
1208 return false;
1209 }
1210
1211 public void updateAsciiStream(int arg0, InputStream arg1)
1212 throws SQLException {
1213 }
1214
1215 public void updateAsciiStream(String arg0, InputStream arg1)
1216 throws SQLException {
1217 }
1218
1219 public void updateAsciiStream(int arg0, InputStream arg1, long arg2)
1220 throws SQLException {
1221 }
1222
1223 public void updateAsciiStream(String arg0, InputStream arg1, long arg2)
1224 throws SQLException {
1225 }
1226
1227 public void updateBinaryStream(int arg0, InputStream arg1)
1228 throws SQLException {
1229 }
1230
1231 public void updateBinaryStream(String arg0, InputStream arg1)
1232 throws SQLException {
1233 }
1234
1235 public void updateBinaryStream(int arg0, InputStream arg1, long arg2)
1236 throws SQLException {
1237 }
1238
1239 public void updateBinaryStream(String arg0, InputStream arg1, long arg2)
1240 throws SQLException {
1241 }
1242
1243 public void updateBlob(int arg0, InputStream arg1) throws SQLException {
1244 }
1245
1246 public void updateBlob(String arg0, InputStream arg1) throws SQLException {
1247 }
1248
1249 public void updateBlob(int arg0, InputStream arg1, long arg2)
1250 throws SQLException {
1251 }
1252
1253 public void updateBlob(String arg0, InputStream arg1, long arg2)
1254 throws SQLException {
1255 }
1256
1257 public void updateCharacterStream(int arg0, Reader arg1)
1258 throws SQLException {
1259 }
1260
1261 public void updateCharacterStream(String arg0, Reader arg1)
1262 throws SQLException {
1263 }
1264
1265 public void updateCharacterStream(int arg0, Reader arg1, long arg2)
1266 throws SQLException {
1267 }
1268
1269 public void updateCharacterStream(String arg0, Reader arg1, long arg2)
1270 throws SQLException {
1271 }
1272
1273 public void updateClob(int arg0, Reader arg1) throws SQLException {
1274 }
1275
1276 public void updateClob(String arg0, Reader arg1) throws SQLException {
1277 }
1278
1279 public void updateClob(int arg0, Reader arg1, long arg2)
1280 throws SQLException {
1281 }
1282
1283 public void updateClob(String arg0, Reader arg1, long arg2)
1284 throws SQLException {
1285 }
1286
1287 public void updateNCharacterStream(int arg0, Reader arg1)
1288 throws SQLException {
1289 }
1290
1291 public void updateNCharacterStream(String arg0, Reader arg1)
1292 throws SQLException {
1293 }
1294
1295 public void updateNCharacterStream(int arg0, Reader arg1, long arg2)
1296 throws SQLException {
1297 }
1298
1299 public void updateNCharacterStream(String arg0, Reader arg1, long arg2)
1300 throws SQLException {
1301 }
1302
1303 public void updateNClob(int arg0, NClob arg1) throws SQLException {
1304 }
1305
1306 public void updateNClob(String arg0, NClob arg1) throws SQLException {
1307 }
1308
1309 public void updateNClob(int arg0, Reader arg1) throws SQLException {
1310 }
1311
1312 public void updateNClob(String arg0, Reader arg1) throws SQLException {
1313 }
1314
1315 public void updateNClob(int arg0, Reader arg1, long arg2)
1316 throws SQLException {
1317 }
1318
1319 public void updateNClob(String arg0, Reader arg1, long arg2)
1320 throws SQLException {
1321 }
1322
1323 public void updateNString(int arg0, String arg1) throws SQLException {
1324 }
1325
1326 public void updateNString(String arg0, String arg1) throws SQLException {
1327 }
1328
1329 public void updateRowId(int arg0, RowId arg1) throws SQLException {
1330 }
1331
1332 public void updateRowId(String arg0, RowId arg1) throws SQLException {
1333 }
1334
1335 public void updateSQLXML(int arg0, SQLXML arg1) throws SQLException {
1336 }
1337
1338 public void updateSQLXML(String arg0, SQLXML arg1) throws SQLException {
1339 }
1340
1341 public boolean isWrapperFor(Class<?> arg0) throws SQLException {
1342
1343 return false;
1344 }
1345
1346 public <T> T unwrap(Class<T> arg0) throws SQLException {
1347
1348 return null;
1349 }
1350
1155 } 1351 }

http://dive4elements.wald.intevation.org