MustInt32 requires parameter value to exist to bind to int32 variable. Returns error when value does not exist
(sourceParam string, dest *int32)
| 484 | |
| 485 | // MustInt32 requires parameter value to exist to bind to int32 variable. Returns error when value does not exist |
| 486 | func (b *ValueBinder) MustInt32(sourceParam string, dest *int32) *ValueBinder { |
| 487 | return b.intValue(sourceParam, dest, 32, true) |
| 488 | } |
| 489 | |
| 490 | // Int16 binds parameter to int16 variable |
| 491 | func (b *ValueBinder) Int16(sourceParam string, dest *int16) *ValueBinder { |