| 82 | |
| 83 | |
| 84 | bool ResultSet::isNull(unsigned param) const |
| 85 | { |
| 86 | fb_assert(param > 0); |
| 87 | |
| 88 | const dsc* desc = &stmt->outValues[(param - 1) * 2 + 1]; |
| 89 | fb_assert(desc->dsc_dtype == dtype_short); |
| 90 | |
| 91 | return *reinterpret_cast<SSHORT*>(desc->dsc_address) != 0; |
| 92 | } |
| 93 | |
| 94 | |
| 95 | dsc& ResultSet::getDesc(unsigned param) |
no outgoing calls
no test coverage detected