Minor problem, but, in the "wxSQLite3Transaction(...)" function there is a "assert(db != NULL);". When building the the library for wxWinCE it cannot find this function. I'm assuming wxWinCE doesn't explicitly bring in <assert.h> while wxMSW does when you innclude <wx/wx.h>. Solutions:
1> Include "#include <assert.h>" before the function.
or
2> Why not use wxASSERT(...) instead?
I'll change it to use wxASSERT.
assert has been replaced by wxASSERT.