Lines Matching refs:Columns
2147 rs.lastcols = make([]driver.Value, len(rs.rowsi.Columns()))
2217 // Columns returns the column names.
2218 // Columns returns an error if the rows are closed, or if the rows
2220 func (rs *Rows) Columns() ([]string, error) {
2229 return rs.rowsi.Columns(), nil
2305 names := rowsi.Columns()
2335 // Scan copies the columns in the current row into the values pointed
2337 // number of columns in Rows.
2339 // Scan converts columns read from the database into the following
2358 // scanned from numeric database columns into *string, scans into
2364 // floating point columns into *float64.
2456 // Scan copies the columns from the matched row into the values