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

Method BooleanField

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

Source from the content-addressed store, hash-verified

690 } // end of FloatField
691
692 public boolean BooleanField(int n, String name) {
693 if (rs == null) {
694 System.out.println("No result set");
695 } else try {
696 return (n > 0) ? rs.getBoolean(n) : rs.getBoolean(name);
697 } catch (SQLException se) {
698 SetErrmsg(se);
699 } //end try/catch
700
701 return false;
702 } // end of BooleanField
703
704 public int DateField(int n, String name) {
705 if (rs == null) {

Callers 1

PrintResultMethod · 0.80

Calls 1

SetErrmsgMethod · 0.95

Tested by

no test coverage detected