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

Method ColumnName

storage/connect/JdbcInterface.java:587–597  ·  view source on GitHub ↗
(int n)

Source from the content-addressed store, hash-verified

585 } // end of Fetch
586
587 public String ColumnName(int n) {
588 if (rsmd == null) {
589 System.out.println("No result metadata");
590 } else try {
591 return rsmd.getColumnLabel(n);
592 } catch (SQLException se) {
593 SetErrmsg(se);
594 } //end try/catch
595
596 return null;
597 } // end of ColumnName
598
599 public int ColumnType(int n, String name) {
600 if (rsmd == null) {

Callers 1

PrintResultMethod · 0.45

Calls 1

SetErrmsgMethod · 0.95

Tested by

no test coverage detected