Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/database/sql/sql_test.go

    	spec := nullTestSpec{"nullint32", "int32", [6]nullTestRow{
    		{NullInt32{31, true}, 1, NullInt32{31, true}},
    		{NullInt32{-22, false}, 1, NullInt32{0, false}},
    		{22, 1, NullInt32{22, true}},
    		{NullInt32{33, true}, 1, NullInt32{33, true}},
    		{NullInt32{222, false}, 1, NullInt32{0, false}},
    		{0, NullInt32{31, false}, nil},
    	}}
    	nullTestRun(t, spec)
    }
    
    func TestNullInt16Param(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

    }
    
    // Value implements the [driver.Valuer] interface.
    func (n NullInt64) Value() (driver.Value, error) {
    	if !n.Valid {
    		return nil, nil
    	}
    	return n.Int64, nil
    }
    
    // NullInt32 represents an int32 that may be null.
    // NullInt32 implements the [Scanner] interface so
    // it can be used as a scan destination, similar to [NullString].
    type NullInt32 struct {
    	Int32 int32
    	Valid bool // Valid is true if Int32 is not NULL
    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