(row int, name string)
| 107 | } |
| 108 | |
| 109 | func (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 | |
| 117 | func (r *Resultset) GetUint(row, column int) (uint64, error) { |
| 118 | d, err := r.GetValue(row, column) |