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

Method GetIntByName

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

Source from the content-addressed store, hash-verified

174}
175
176func (r *Resultset) GetIntByName(row int, name string) (int64, error) {
177 v, err := r.GetUintByName(row, name)
178 if err != nil {
179 return 0, err
180 }
181
182 return int64(v), nil
183}
184
185func (r *Resultset) GetFloat(row, column int) (float64, error) {
186 d, err := r.GetValue(row, column)

Callers

nothing calls this directly

Calls 1

GetUintByNameMethod · 0.95

Tested by

no test coverage detected