1 32 33 package com.nqadmin.swingSet.datasources; 34 35 import java.io.Serializable ; 36 import javax.sql.RowSetListener ; 37 import java.sql.Date ; 38 import java.sql.SQLException ; 39 40 55 public class SSRowSetAdapter implements SSRowSet { 56 57 65 public boolean getBoolean(int columnIndex) throws SQLException { 66 throw new UnsupportedOperationException (); 67 } 68 69 77 public int getInt(int columnIndex) throws SQLException { 78 throw new UnsupportedOperationException (); 79 } 80 81 89 public long getLong(int columnIndex) throws SQLException { 90 throw new UnsupportedOperationException (); 91 } 92 93 101 public float getFloat(int columnIndex) throws SQLException { 102 throw new UnsupportedOperationException (); 103 } 104 105 113 public double getDouble(int columnIndex) throws SQLException { 114 throw new UnsupportedOperationException (); 115 } 116 117 125 public String getString(int columnIndex) throws SQLException { 126 throw new UnsupportedOperationException (); 127 } 128 129 137 public Date getDate(int columnIndex) throws SQLException { 138 throw new UnsupportedOperationException (); 139 } 140 141 149 public byte[] getBytes(int columnIndex) throws SQLException { 150 throw new UnsupportedOperationException (); 151 } 152 153 162 public void updateBoolean(int columnIndex, boolean x) throws SQLException { 163 throw new UnsupportedOperationException (); 164 } 165 166 175 public void updateInt(int columnIndex, int x) throws SQLException { 176 throw new UnsupportedOperationException (); 177 } 178 179 188 public void updateLong(int columnIndex, long x) throws SQLException { 189 throw new UnsupportedOperationException (); 190 } 191 192 201 public void updateFloat(int columnIndex, float x) throws SQLException { 202 throw new UnsupportedOperationException (); 203 } 204 205 214 public void updateDouble(int columnIndex, double x) throws SQLException { 215 throw new UnsupportedOperationException (); 216 } 217 218 227 public void updateString(int columnIndex, String x) throws SQLException { 228 throw new UnsupportedOperationException (); 229 } 230 231 240 public void updateDate(int columnIndex, Date x) throws SQLException { 241 throw new UnsupportedOperationException (); 242 } 243 244 253 public void updateBytes(int columnIndex, byte[] x) throws SQLException { 254 throw new UnsupportedOperationException (); 255 } 256 257 265 public void updateNull(int columnIndex) throws SQLException { 266 throw new UnsupportedOperationException (); 267 } 268 269 277 public boolean getBoolean(String columnName) throws SQLException { 278 throw new UnsupportedOperationException (); 279 } 280 281 289 public int getInt(String columnName) throws SQLException { 290 throw new UnsupportedOperationException (); 291 } 292 293 301 public long getLong(String columnName) throws SQLException { 302 throw new UnsupportedOperationException (); 303 } 304 305 313 public float getFloat(String columnName) throws SQLException { 314 throw new UnsupportedOperationException (); 315 } 316 317 325 public double getDouble(String columnName) throws SQLException { 326 throw new UnsupportedOperationException (); 327 } 328 329 337 public String getString(String columnName) throws SQLException { 338 throw new UnsupportedOperationException (); 339 } 340 341 349 public Date getDate(String columnName) throws SQLException { 350 throw new UnsupportedOperationException (); 351 } 352 353 361 public byte[] getBytes(String columnName) throws SQLException { 362 throw new UnsupportedOperationException (); 363 } 364 365 374 public void updateBoolean(String columnName, boolean x) throws SQLException { 375 throw new UnsupportedOperationException (); 376 } 377 378 387 public void updateInt(String columnName, int x) throws SQLException { 388 throw new UnsupportedOperationException (); 389 } 390 391 400 public void updateLong(String columnName, long x) throws SQLException { 401 throw new UnsupportedOperationException (); 402 } 403 404 413 public void updateFloat(String columnName, float x) throws SQLException { 414 throw new UnsupportedOperationException (); 415 } 416 417 426 public void updateDouble(String columnName, double x) throws SQLException { 427 throw new UnsupportedOperationException (); 428 } 429 430 439 public void updateString(String columnName, String x) throws SQLException { 440 throw new UnsupportedOperationException (); 441 } 442 443 452 public void updateDate(String columnName, Date x) throws SQLException { 453 throw new UnsupportedOperationException (); 454 } 455 456 465 public void updateBytes(String columnName, byte[] x) throws SQLException { 466 throw new UnsupportedOperationException (); 467 } 468 469 477 public void updateNull(String columnName) throws SQLException { 478 throw new UnsupportedOperationException (); 479 } 480 481 494 public void addRowSetListener(RowSetListener listener){ 495 throw new UnsupportedOperationException (); 496 } 497 498 504 public void removeRowSetListener(RowSetListener listener){ 505 throw new UnsupportedOperationException (); 506 } 507 508 515 public String getColumnName(int columnIndex) throws SQLException { 516 throw new UnsupportedOperationException (); 517 } 518 519 525 public int getColumnIndex(String columnName) throws SQLException { 526 throw new UnsupportedOperationException (); 527 } 528 529 535 public int getColumnType(String columnName) throws SQLException { 536 throw new UnsupportedOperationException (); 537 } 538 539 545 public int getColumnType(int columnIndex) throws SQLException { 546 throw new UnsupportedOperationException (); 547 } 548 549 555 public int getRow() throws SQLException { 556 throw new UnsupportedOperationException (); 557 } 558 559 564 public int getColumnCount() throws SQLException { 565 throw new UnsupportedOperationException (); 566 } 567 568 579 public boolean next() throws SQLException { 580 throw new UnsupportedOperationException (); 581 } 582 583 588 public boolean previous() throws SQLException { 589 throw new UnsupportedOperationException (); 590 } 591 592 598 public boolean last() throws SQLException { 599 throw new UnsupportedOperationException (); 600 } 601 602 608 public boolean first() throws SQLException { 609 throw new UnsupportedOperationException (); 610 } 611 612 617 public boolean isFirst() throws SQLException { 618 throw new UnsupportedOperationException (); 619 } 620 621 629 public boolean isLast() throws SQLException { 630 throw new UnsupportedOperationException (); 631 } 632 633 638 public void beforeFirst() throws SQLException { 639 throw new UnsupportedOperationException (); 640 } 641 642 659 public boolean absolute(int row) throws SQLException { 660 throw new UnsupportedOperationException (); 661 } 662 663 669 public void updateRow() throws SQLException { 670 throw new UnsupportedOperationException (); 671 } 672 673 678 public void moveToCurrentRow() throws SQLException { 679 throw new UnsupportedOperationException (); 680 } 681 682 694 public void moveToInsertRow() throws SQLException { 695 throw new UnsupportedOperationException (); 696 } 697 698 705 public void insertRow() throws SQLException { 706 throw new UnsupportedOperationException (); 707 } 708 709 715 public void deleteRow() throws SQLException { 716 throw new UnsupportedOperationException (); 717 } 718 719 727 public void cancelRowUpdates() throws SQLException { 728 throw new UnsupportedOperationException (); 729 } 730 731 746 public void refreshRow() throws SQLException { 747 throw new UnsupportedOperationException (); 748 } 749 750 758 public void execute() throws SQLException { 759 throw new UnsupportedOperationException (); 760 } 761 762 } 763 764 | Popular Tags |