MCPcopy Create free account
hub / github.com/IceFireDB/IceFireDB / GetUintByName

Method GetUintByName

IceFireDB-SQLite/pkg/mysql/mysql/resultset.go:159–165  ·  view source on GitHub ↗
(row int, name string)

Source from the content-addressed store, hash-verified

157}
158
159func (r *Resultset) GetUintByName(row int, name string) (uint64, error) {
160 if column, err := r.NameIndex(name); err != nil {
161 return 0, err
162 } else {
163 return r.GetUint(row, column)
164 }
165}
166
167func (r *Resultset) GetInt(row, column int) (int64, error) {
168 v, err := r.GetUint(row, column)

Callers 1

GetIntByNameMethod · 0.95

Calls 2

NameIndexMethod · 0.95
GetUintMethod · 0.95

Tested by

no test coverage detected