(row, column int)
| 98 | } |
| 99 | |
| 100 | func (r *Resultset) IsNull(row, column int) (bool, error) { |
| 101 | d, err := r.GetValue(row, column) |
| 102 | if err != nil { |
| 103 | return false, err |
| 104 | } |
| 105 | |
| 106 | return d == nil, nil |
| 107 | } |
| 108 | |
| 109 | func (r *Resultset) IsNullByName(row int, name string) (bool, error) { |
| 110 | if column, err := r.NameIndex(name); err != nil { |