Use: Ubuntu, CodeBlocks, wxWidgeth, SQLite
Default project on wxWidgeth (About, Quit). Code (event on key press):
void lllDialog::OnAbout(wxCommandEvent &event)
{
wxMessageBox(wxT("STEP 1")); // STEP 1
sqlite3 *db ;
char *errmsg;
sqlite3_open("./db", &db) ;
sqlite3_exec(db, "select * from test;", callback, NULL, &errmsg);
wxMessageBox(wxT("STEP 2")); // STEP 2
}
(trying configure work with SQLite)work out on STEP1 and 2. Everything steps no debuging on steps mode.
Any idea?