MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / isNull

Method isNull

src/jrd/ResultSet.cpp:84–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82
83
84bool 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
95dsc& ResultSet::getDesc(unsigned param)

Callers 15

EVL_fieldFunction · 0.45
EXT_storeFunction · 0.45
initResultFunction · 0.45
makeAbsFunction · 0.45
makeAsciiCharFunction · 0.45
makeBinFunction · 0.45
makeBinShiftFunction · 0.45
makeBlobAppendBlobFunction · 0.45
makeCeilFloorFunction · 0.45
makeLeftRightFunction · 0.45
makeModFunction · 0.45
makeReplaceFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected