MCPcopy Create free account
hub / github.com/MariaDB/server / DoubleField

Method DoubleField

storage/connect/JdbcInterface.java:668–678  ·  view source on GitHub ↗
(int n, String name)

Source from the content-addressed store, hash-verified

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) {

Callers 1

PrintResultMethod · 0.80

Calls 1

SetErrmsgMethod · 0.95

Tested by

no test coverage detected