(int n, String name)
| 666 | } // end of BiginttField |
| 667 | |
| 668 | public double DoubleField(int n, String name) { |
| 669 | if (rs == null) { |
| 670 | System.out.println("No result set"); |
| 671 | } else try { |
| 672 | return (n > 0) ? rs.getDouble(n) : rs.getDouble(name); |
| 673 | } catch (SQLException se) { |
| 674 | SetErrmsg(se); |
| 675 | } //end try/catch |
| 676 | |
| 677 | return 0.; |
| 678 | } // end of DoubleField |
| 679 | |
| 680 | public float FloatField(int n, String name) { |
| 681 | if (rs == null) { |