Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using SQLite3 in Windows 8 Javascript App

Building a Windows 8 application with JavaScript for the new Windows Store I stumbled on the lack of good data storage mechanisms.

I would like my app to use the SQLite3, but I cannot seem to make it work. Closest I can get is an error "Class not registered" when trying to access SQLite3 API through JavaScript.

If you made it work for your app, please share an example. Thanks!

like image 299
Paulius Uza Avatar asked Nov 03 '12 23:11

Paulius Uza


1 Answers

Take a look at the SQLLite-WinRT project on github. I haven't played with it but it's in my queue of things to try out.

https://github.com/doo/SQLite3-WinRT

Here's a tutorial: http://timheuer.com/blog/archive/2012/08/07/updated-how-to-using-sqlite-from-windows-store-apps.aspx

like image 165
bryanmac Avatar answered Nov 04 '22 20:11

bryanmac