Tizen support
fryette opened this issue · 5 comments
fryette commented
Could you please add Tizen support?
bricelam commented
Microsoft.Data.Sqlite targets .NET Standard 2.0 and should just work. What error are you seeing?
ericsink commented
I suspect the real problem is my fault. I don't have Tizen support in SQLitePCL.raw.
bricelam commented
@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());
wcoder commented
@bricelam thanks for your solution, works fine.
Simple sample: https://github.com/wcoder/Tizen.Net.SQLite.Sample
bricelam commented
Closing as external (duplicate of ericsink/SQLitePCL.raw#125)