(int n)
| 585 | } // end of Fetch |
| 586 | |
| 587 | public String ColumnName(int n) { |
| 588 | if (rsmd == null) { |
| 589 | System.out.println("No result metadata"); |
| 590 | } else try { |
| 591 | return rsmd.getColumnLabel(n); |
| 592 | } catch (SQLException se) { |
| 593 | SetErrmsg(se); |
| 594 | } //end try/catch |
| 595 | |
| 596 | return null; |
| 597 | } // end of ColumnName |
| 598 | |
| 599 | public int ColumnType(int n, String name) { |
| 600 | if (rsmd == null) { |