(row int, name string)
| 157 | } |
| 158 | |
| 159 | func (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 | |
| 167 | func (r *Resultset) GetInt(row, column int) (int64, error) { |
| 168 | v, err := r.GetUint(row, column) |
no test coverage detected