Search code examples
c#google-gears

Google Gears SQL Lite DB and C#


Under the covers, Google Gears uses SQL Lite as its data store. Has anyone successfully connected to the Google Gears SQL Lite DB with C#?

Thanks


Solution

  • have a look at my favorite SQLite ADO.NET Wrapper, which I personally use in a lot of projects. I suppose, that Google Gears is using a default SQLite database with a little bit of modifications in the code to prevent ATTACH and #PRAGMA uses. But the dataformat should be identical and so you should be able to access it using this wrapper.

    Best regards, Martin