aspnet/Microsoft.Data.Sqlite

Tizen support

fryette opened this issue · 5 comments

Could you please add Tizen support?

Microsoft.Data.Sqlite targets .NET Standard 2.0 and should just work. What error are you seeing?

I suspect the real problem is my fault. I don't have Tizen support in SQLitePCL.raw.

@ericsink That was my next guess.

@fryette Does Tizen provide a system-wide version of SQLite? If so, it may work if you install these packages...

  • Microsoft.Data.Sqlite.Core
  • SQLitePCLRaw.provider.sqlite3.netstandard11

...and call this during app start:

SQLitePCL.raw.SetProvider(new SQLitePCL.SQLite3Provider_sqlite3());

@bricelam thanks for your solution, works fine.

Simple sample: https://github.com/wcoder/Tizen.Net.SQLite.Sample

Closing as external (duplicate of ericsink/SQLitePCL.raw#125)