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

Method StringField

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

Source from the content-addressed store, hash-verified

629 } // end of ColumnDesc
630
631 public String StringField(int n, String name) {
632 if (rs == null) {
633 System.out.println("No result set");
634 } else try {
635 return (n > 0) ? rs.getString(n) : rs.getString(name);
636 } catch (SQLException se) {
637 SetErrmsg(se);
638 } //end try/catch
639
640 return null;
641 } // end of StringField
642
643 public int IntField(int n, String name) {
644 if (rs == null) {

Callers 1

PrintResultMethod · 0.80

Calls 1

SetErrmsgMethod · 0.95

Tested by

no test coverage detected