| 221 | |
| 222 | |
| 223 | int 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 | |
| 236 | int CppSQLite3Query::getIntField(const CString& szField, int nNullValue/*=0*/) |
no outgoing calls
no test coverage detected