I create a new static library project and copy all files from wxsqlite3-3.2.1\sqlite3\secure\src\* into it. Additional I add this defines
THREADSAFE=1
SQLITE_SOUNDEX
SQLITE_ENABLE_COLUMN_METADATA
SQLITE_HAS_CODEC
CODEC_TYPE=CODEC_TYPE_AES128
SQLITE_SECURE_DELETE
SQLITE_ENABLE_FTS3
SQLITE_ENABLE_FTS3_PARENTHESIS
SQLITE_ENABLE_RTREE
SQLITE_ENABLE_EXTFUNC
SQLITE_USE_URI
After press "compile" I get this error message:
"[BCC32 Fehler] codec.h(65): E2139 In Deklaration fehlt ;"
Line 65:
Code: Select all
Btree* m_bt; /* Pointer to B-tree used by DB */
the next error is:
"[BCC32 Fehler] codec.h(66): E2451 Undefiniertes Symbol 'SQLITE_MAX_PAGE_SIZE'" (means "SQLITE_MAX_PAGE_SIZE'" is undefined)
Code: Select all
unsigned char m_page[SQLITE_MAX_PAGE_SIZE+24];
Is here somthing missing?
