Greetings. We are studing ways to develop Web applications in C/C++ with SQLite database. Someone have a tip? Framework? Library? Regards.
Web development tools (CGI)
We have successfully used CppWeb library: http://sourceforge.net/projects/cppweb/ This web developement framework is light-weight and highly portable. It compiles on ARM Linux with GCC (don't know for WinCE). And we are using SQLite "amalgamation" for database access: http://www.sqlite.org/download.html (I've wrote simple C++ wrapper for SQLite which compiles on ARM device) Resulting CGI web application executable with SQLite database acces is ~200 kb in size and has great performance. Feel free to ask for more help since I have some experience with this.