Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for listVols (0.09 sec)

  1. src/database/sql/sql.go

    		rs.closemu.RUnlock()
    	}
    
    	if rs.lastcols == nil {
    		rs.closemuRUnlockIfHeldByScan()
    		return errors.New("sql: Scan called without calling Next")
    	}
    	if len(dest) != len(rs.lastcols) {
    		rs.closemuRUnlockIfHeldByScan()
    		return fmt.Errorf("sql: expected %d destination arguments in Scan, not %d", len(rs.lastcols), len(dest))
    	}
    
    	for i, sv := range rs.lastcols {
    		err := convertAssignRows(dest[i], sv, rs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top