Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for QueryRow (0.74 sec)

  1. doc/next/6-stdlib/99-minor/database/sql/64707.md

    Errors returned by [driver.Valuer] implementations are now wrapped for
    improved error handling during operations like [DB.Query], [DB.Exec],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 160 bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    	}
    
    	err = db.QueryRow("SELECT|people|age,name|age=?", 2).Scan(&age, &name)
    	if err != nil {
    		t.Fatalf("age QueryRow+Scan: %v", err)
    	}
    	if name != "Bob" {
    		t.Errorf("expected name Bob, got %q", name)
    	}
    	if age != 2 {
    		t.Errorf("expected age 2, got %d", age)
    	}
    
    	err = db.QueryRow("SELECT|people|age,name|name=?", "Alice").Scan(&age, &name)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    }
    
    // QueryRow executes a query that is expected to return at most one row.
    // QueryRow always returns a non-nil value. Errors are deferred until
    // [Row]'s Scan method is called.
    // If the query selects no rows, the [*Row.Scan] will return [ErrNoRows].
    // Otherwise, [*Row.Scan] scans the first selected row and discards
    // the rest.
    //
    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