//nResult=sqlite3_exec(db,strSql.c_str(),callback,NULL,&errmsg); char**pResult; intnRow; intnCol; nResult=sqlite3_get_table(db,strSql.c_str(),&pResult,&nRow,&nCol,&errmsg); if(nResult!=SQLITE_OK) { sqlite3_close(db); cout<<errmsg<<endl; sqlite3_free(errmsg); return0; }...