(row int, name string)
| 174 | } |
| 175 | |
| 176 | func (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 | |
| 185 | func (r *Resultset) GetFloat(row, column int) (float64, error) { |
| 186 | d, err := r.GetValue(row, column) |
nothing calls this directly
no test coverage detected