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

Method GetInt

IceFireDB-SQLite/pkg/mysql/mysql/resultset.go:167–174  ·  view source on GitHub ↗
(row, column int)

Source from the content-addressed store, hash-verified

165}
166
167func (r *Resultset) GetInt(row, column int) (int64, error) {
168 v, err := r.GetUint(row, column)
169 if err != nil {
170 return 0, err
171 }
172
173 return int64(v), nil
174}
175
176func (r *Resultset) GetIntByName(row int, name string) (int64, error) {
177 v, err := r.GetUintByName(row, name)

Callers

nothing calls this directly

Calls 1

GetUintMethod · 0.95

Tested by

no test coverage detected