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

Method IsNullByName

IceFireDB-SQLProxy/pkg/mysql/mysql/resultset.go:109–115  ·  view source on GitHub ↗
(row int, name string)

Source from the content-addressed store, hash-verified

107}
108
109func (r *Resultset) IsNullByName(row int, name string) (bool, error) {
110 if column, err := r.NameIndex(name); err != nil {
111 return false, err
112 } else {
113 return r.IsNull(row, column)
114 }
115}
116
117func (r *Resultset) GetUint(row, column int) (uint64, error) {
118 d, err := r.GetValue(row, column)

Callers

nothing calls this directly

Calls 2

NameIndexMethod · 0.95
IsNullMethod · 0.95

Tested by

no test coverage detected