Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nullint16 (0.11 sec)

  1. src/database/sql/sql_test.go

    	spec := nullTestSpec{"nullint16", "int16", [6]nullTestRow{
    		{NullInt16{31, true}, 1, NullInt16{31, true}},
    		{NullInt16{-22, false}, 1, NullInt16{0, false}},
    		{22, 1, NullInt16{22, true}},
    		{NullInt16{33, true}, 1, NullInt16{33, true}},
    		{NullInt16{222, false}, 1, NullInt16{0, false}},
    		{0, NullInt16{31, false}, nil},
    	}}
    	nullTestRun(t, spec)
    }
    
    func TestNullByteParam(t *testing.T) {
    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

    	}
    	return ns.String, nil
    }
    
    // NullInt64 represents an int64 that may be null.
    // NullInt64 implements the [Scanner] interface so
    // it can be used as a scan destination, similar to [NullString].
    type NullInt64 struct {
    	Int64 int64
    	Valid bool // Valid is true if Int64 is not NULL
    }
    
    // Scan implements the [Scanner] interface.
    func (n *NullInt64) Scan(value any) error {
    	if value == nil {
    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