Int16 binds parameter to int16 variable
(sourceParam string, dest *int16)
| 489 | |
| 490 | // Int16 binds parameter to int16 variable |
| 491 | func (b *ValueBinder) Int16(sourceParam string, dest *int16) *ValueBinder { |
| 492 | return b.intValue(sourceParam, dest, 16, false) |
| 493 | } |
| 494 | |
| 495 | // MustInt16 requires parameter value to exist to bind to int16 variable. Returns error when value does not exist |
| 496 | func (b *ValueBinder) MustInt16(sourceParam string, dest *int16) *ValueBinder { |