MustInt64 requires parameter value to exist to bind to int64 variable. Returns error when value does not exist
(sourceParam string, dest *int64)
| 474 | |
| 475 | // MustInt64 requires parameter value to exist to bind to int64 variable. Returns error when value does not exist |
| 476 | func (b *ValueBinder) MustInt64(sourceParam string, dest *int64) *ValueBinder { |
| 477 | return b.intValue(sourceParam, dest, 64, true) |
| 478 | } |
| 479 | |
| 480 | // Int32 binds parameter to int32 variable |
| 481 | func (b *ValueBinder) Int32(sourceParam string, dest *int32) *ValueBinder { |