I am trying to develop a WinRT DLL which uses SQLite to write database. But it seems like some win32 APIs in SQLite source code are not supported by metro, such as, LoadLibraryW, GetTempPathA.

Is there any way to compile SQLite source code or use SQLite with WinRT DLL?

link|improve this question
possible duplicate of Using SQLite with WinRT – dalle Oct 14 '11 at 6:54
@dalle: It seems that, although the titles are similar, the problems described are quite different. – Björn Pollex Oct 14 '11 at 6:56
@BjörnPollex: True, the questions and described problems differs a bit, but it the answer is still the same. Some Win32 functions are not permitted when compiling using WinRT, such as LoadLibraryW, GetTempPathA, CreateFileA, CreateFileW, DeleteFileA and so on. The hardest one to port is probably LoadLibraryW. – dalle Oct 14 '11 at 7:22
feedback

3 Answers

Well you could always link sqlite3 statically and define new functions for accessing files etc via sqlite3_vfs.

link|improve this answer
feedback

There's a winrt branch of SQLite now that only uses supported API. On top of that, we implemented SQLite3-WinRT, a WinRT component that allows using SQLite in any of the WinRT languages.

link|improve this answer
feedback
  1. rename sqlite3.c to sqlite3.cpp
  2. replace LoadLibrary with LoadPackagedLibrary
  3. Fix lots of syntax errors.
link|improve this answer
Why rename? You can link c and c++ modules together. In fact, that is how I incorporate SQLite myself... – Jörgen Sigvardsson Nov 17 '11 at 10:16
1  
My VS11 on W8 Consumer Preview says you can't ("cannot compile C files with /ZW (Metro) option"). – Cygon Mar 4 at 10:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.