Int8 binds parameter to int8 variable
(sourceParam string, dest *int8)
| 499 | |
| 500 | // Int8 binds parameter to int8 variable |
| 501 | func (b *ValueBinder) Int8(sourceParam string, dest *int8) *ValueBinder { |
| 502 | return b.intValue(sourceParam, dest, 8, false) |
| 503 | } |
| 504 | |
| 505 | // MustInt8 requires parameter value to exist to bind to int8 variable. Returns error when value does not exist |
| 506 | func (b *ValueBinder) MustInt8(sourceParam string, dest *int8) *ValueBinder { |