acme-dns/vendor/github.com/erikstmartin/go-testdb/rows.go
Joona Hoikkala fd9ce4606d
Get rid of Iris and use julienschmidt/httprouter instead (#20)
* Replace iris with httprouter

* Linter fixes

* Finalize iris removal

* Vendor dependencies for reproducable builds

* Api tests are back
2017-11-14 23:54:29 +02:00

49 lines
667 B
Go

package testdb
import (
"database/sql/driver"
"io"
)
type rows struct {
closed bool
columns []string
rows [][]driver.Value
pos int
}
func (rs *rows) clone() *rows {
if rs == nil {
return nil
}
return &rows{closed: false, columns: rs.columns, rows: rs.rows, pos: 0}
}
func (rs *rows) Next(dest []driver.Value) error {
rs.pos++
if rs.pos > len(rs.rows) {
rs.closed = true
return io.EOF // per interface spec
}
for i, col := range rs.rows[rs.pos-1] {
dest[i] = col
}
return nil
}
func (rs *rows) Err() error {
return nil
}
func (rs *rows) Columns() []string {
return rs.columns
}
func (rs *rows) Close() error {
return nil
}