Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NullString (0.49 sec)

  1. src/database/sql/sql_test.go

    	spec := nullTestSpec{"nullstring", "string", [6]nullTestRow{
    		{NullString{"aqua", true}, "", NullString{"aqua", true}},
    		{NullString{"brown", false}, "", NullString{"", false}},
    		{"chartreuse", "", NullString{"chartreuse", true}},
    		{NullString{"darkred", true}, "", NullString{"darkred", true}},
    		{NullString{"eel", false}, "", NullString{"", false}},
    		{"foo", NullString{"black", false}, 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)
  2. src/database/sql/sql.go

    type RawBytes []byte
    
    // NullString represents a string that may be null.
    // NullString implements the [Scanner] interface so
    // it can be used as a scan destination:
    //
    //	var s NullString
    //	err := db.QueryRow("SELECT name FROM foo WHERE id=?", id).Scan(&s)
    //	...
    //	if s.Valid {
    //	   // use s.String
    //	} else {
    //	   // NULL value
    //	}
    type NullString struct {
    	String string
    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