MCPcopy Create free account
hub / github.com/altairwei/WizNotePlus / getBoolField

Method getBoolField

src/database/cppsqlite3.cpp:263–268  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

261
262
263BOOL CppSQLite3Query::getBoolField(int nField, BOOL bNullValue/*=FALSE*/)
264{
265 int nDefaultValue = bNullValue ? 1 : 0;
266 //
267 return getIntField(nField, nDefaultValue) ? TRUE : FALSE;
268}
269BOOL CppSQLite3Query::getBoolField(const CString& szField, BOOL bNullValue/*=FALSE*/)
270{
271 int nField = fieldIndex(szField);

Callers 1

sqlToStyleDataArrayMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected