LocalRowSet wraps *sql.Rows to implement RowSet.
| 142 | |
| 143 | // LocalRowSet wraps *sql.Rows to implement RowSet. |
| 144 | type LocalRowSet struct { |
| 145 | rows *sql.Rows |
| 146 | } |
| 147 | |
| 148 | func (r *LocalRowSet) Columns() ([]string, error) { |
| 149 | return r.rows.Columns() |
nothing calls this directly
no outgoing calls
no test coverage detected