Hi Mat, We have been using SQLite in our Windows universal application both for tablet and phone
We used SQlitePCL as the wrapper library to write our queries in plain sql . check for more details here http://codifyit.blogspot.in/2015/04/using-sqlite-in-your-windows-store-apps.html cheers, Saurav On Wed, Aug 19, 2015 at 1:16 PM, Mathieu Sicard <mathieu.sicard7 at gmail.com> wrote: > Hi, > > I was previously using System.Data.SQLite in a .NET library, and now want > to port this library to an Universal Windows library. > > I cannot make the System.Data.SQLite work (since I guess it is not > portable), and found only LINQ style SQLite PCL libraries in NuGet ... > > Is there a way that I can use good all fashion queries in an Universal > Windows App in order to have the same or close syntax as in > System.Data.SQLite? > > Something like this : > > SQLiteCommand dbCommand = new SQLiteCommand(dbConnection); > dbCommand.CommandText = dbQuery; > SQLiteDataReader reader = dbCommand.ExecuteReader(); > > Mat. > _______________________________________________ > sqlite-users mailing list > sqlite-users at mailinglists.sqlite.org > http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users >

