MCPcopy Create free account
hub / github.com/acl-dev/acl / field_int64

Method field_int64

lib_acl_cpp/src/db/db_handle.cpp:108–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

106}
107
108acl_int64 db_row::field_int64(size_t ifield, acl_int64 null_value /* = 0 */) const
109{
110 const char* ptr = field_value(ifield);
111 if (ptr == NULL) {
112 return null_value;
113 } else {
114 return acl_atoi64(ptr);
115 }
116}
117
118acl_int64 db_row::field_int64(const char* name, acl_int64 null_value /* = 0 */) const
119{

Callers 4

load_idx_hostsMethod · 0.80
load_dat_hostsMethod · 0.80
load_db_hostsMethod · 0.80
load_db_tblsMethod · 0.80

Calls 1

acl_atoi64Function · 0.85

Tested by

no test coverage detected