| 241 | |
| 242 | |
| 243 | __int64 CppSQLite3Query::getInt64Field(int nField, int nNullValue/*=0*/) |
| 244 | { |
| 245 | if (fieldDataType(nField) == SQLITE_NULL) |
| 246 | { |
| 247 | return nNullValue; |
| 248 | } |
| 249 | else |
| 250 | { |
| 251 | return sqlite3_column_int64(mpVM, nField); |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | |
| 256 | __int64 CppSQLite3Query::getInt64Field(const CString& szField, int nNullValue/*=0*/) |
no outgoing calls
no test coverage detected