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

Class CppSQLite3Exception

src/database/cppsqlite3.h:38–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36#define CPPSQLITE_ERROR 1000
37
38class CppSQLite3Exception
39{
40public:
41
42 CppSQLite3Exception(const int nErrCode, const CString& errMessage);
43 CppSQLite3Exception(const CppSQLite3Exception& e);
44
45 virtual ~CppSQLite3Exception() {}
46
47 int errorCode() const { return mnErrCode; }
48 const CString& errorMessage() const { return msErrMessage; }
49
50 static const char* errorCodeAsString(int nErrCode);
51
52public:
53 static void throwException(int nErrCode, char* errMessage);
54
55private:
56 int mnErrCode;
57 CString msErrMessage;
58};
59
60
61class CppSQLite3Query

Callers 15

throwExceptionMethod · 0.85
fieldValueMethod · 0.85
fieldValue16Method · 0.85
getColumnLengthMethod · 0.85
getBlobFieldMethod · 0.85
fieldIndexMethod · 0.85
fieldNameMethod · 0.85
fieldDeclTypeMethod · 0.85
fieldDataTypeMethod · 0.85
nextRowMethod · 0.85
finalizeMethod · 0.85
checkVMMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected