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

Method getIntField

src/database/cppsqlite3.cpp:223–233  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

221
222
223int CppSQLite3Query::getIntField(int nField, int nNullValue/*=0*/)
224{
225 if (fieldDataType(nField) == SQLITE_NULL)
226 {
227 return nNullValue;
228 }
229 else
230 {
231 return sqlite3_column_int(mpVM, nField);
232 }
233}
234
235
236int CppSQLite3Query::getIntField(const CString& szField, int nNullValue/*=0*/)

Callers 15

sqlToStyleDataArrayMethod · 0.80
initDocumentExFieldsMethod · 0.80
sqlToMessageDataArrayMethod · 0.80
getUnreadMessageCountMethod · 0.80
getDocumentTagCountMethod · 0.80
getLocationsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected