Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for nullint32 (0.23 sec)

  1. scan.go

    			*dest = append(*dest, mapValue)
    		}
    	case *int, *int8, *int16, *int32, *int64,
    		*uint, *uint8, *uint16, *uint32, *uint64, *uintptr,
    		*float32, *float64,
    		*bool, *string, *time.Time,
    		*sql.NullInt32, *sql.NullInt64, *sql.NullFloat64,
    		*sql.NullBool, *sql.NullString, *sql.NullTime:
    		for initialized || rows.Next() {
    			initialized = false
    			db.RowsAffected++
    			db.AddError(rows.Scan(dest))
    		}
    	default:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. 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)
  3. 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