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

Method ObjectField

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

Source from the content-addressed store, hash-verified

741 } // end of TimestampField
742
743 public Object ObjectField(int n, String name) {
744 if (rs == null) {
745 System.out.println("No result set");
746 } else try {
747 return (n > 0) ? rs.getObject(n) : rs.getObject(name);
748 } catch (SQLException se) {
749 SetErrmsg(se);
750 } //end try/catch
751
752 return null;
753 } // end of ObjectField
754
755 public String UuidField(int n, String name) {
756 Object job;

Callers 1

PrintResultMethod · 0.80

Calls 1

SetErrmsgMethod · 0.95

Tested by

no test coverage detected