locked
How to access data in SQLIte database in Windows Store Apps using JavaScript ? RRS feed

  • Question

  • Hi to all.In my windows store application for data access purposes i would like to use SQLite database. when i googled about the SQLite programming in windows store apps i found many articles developed by using C#/XAML approach but i didn't found any articles in HTML5/JavaScript development environment. So anyone can suggest me the required resources for this scenario.
    Wednesday, November 27, 2013 11:54 AM

Answers

  • You can probably get better support for SqlLite through SqlLite support: http://sqlite.org/support.html.

    If the JavaScript version of SqlLite interface is not available, but the C# version is, then you could create a Windows Runtime component written in C#, add the SqlLite specific code to the C# project and then call the C# class/function from the WinJS app to do the SQLLite specific work for you.


    Windows Store Developer Solutions, follow us on Twitter: @WSDevSol|| Want more solutions? See our blog

    Thursday, November 28, 2013 12:06 AM
    Moderator