All Questions
Tagged with xamarin.uwp sqlite
5 questions
0
votes
0
answers
52
views
How Can I use "my documents" folder as sqlite dabase path? [duplicate]
I'm trying to create my database file in 'my documents' folder but I'm getting an Exception
// get database path
string path = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder....
0
votes
1
answer
263
views
SQLite object can't be set in UWP - Xamarin Forms
Please consider the following problem:
I am attempting to use an SQLite database in a Xamarin Forms app across iOS, Android and Windows 10 devices.
I have my database model at portable level and use ...
0
votes
1
answer
206
views
SQlite implementation on Xamarin.Forms app
I have a Xamarin.Forms application and I need to be able to manage a DB. I'm developing in Microsoft Visual Studio 2017 and I'm following this tutorial dor the SQLite: https://msdn.microsoft.com/en-us/...
0
votes
1
answer
807
views
The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) error in xamarin forms UWP?
I have created a project with SQLiteConnection in xamarin.Forms. In UWP, I have implemented the following interface to return the SQLiteConnection
public class SQLiteImplementation : ISQLite
{
...
0
votes
1
answer
746
views
How to use pre-populated sqlite database in UWP?
This is my 1st attempt to make cross-platform app using Visual Studio 2015. With the help from tutorials available on net, I was able to use SQLite in UWP (Xamarin Forms). But, I don't know how to ...