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

Method IntField

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

Source from the content-addressed store, hash-verified

641 } // end of StringField
642
643 public int IntField(int n, String name) {
644 if (rs == null) {
645 System.out.println("No result set");
646 } else try {
647 return (n > 0) ? rs.getInt(n) : rs.getInt(name);
648 } catch (SQLException se) {
649 SetErrmsg(se);
650 } //end try/catch
651
652 return 0;
653 } // end of IntField
654
655 public long BigintField(int n, String name) {
656 if (rs == null) {

Callers 1

PrintResultMethod · 0.80

Calls 1

SetErrmsgMethod · 0.95

Tested by

no test coverage detected