orc
orc copied to clipboard
Proposal: Add Scan method on cursor implementation
Similar to the database/sql method. Scan should copy the columns in the current row into the values pointed at by dest. The number of values in dest must be the same as the number of columns in Rows.
func (c *Cursor) Scan(dest ...interface{}) error