Tagged Questions
1
vote
1answer
88 views
SQLite join in embedded database tables
I am currently writing a Windows Store Application for Windows 8 and I am using SQLite for the persistence on the embedded database in a class library for windows apps. I am trying to join data from ...
1
vote
1answer
93 views
How to implement Insert, Update and Delete in a parent class that works for all database models using sqlite-net?
Iam using a SQLite database in a Windows 8 Store Application.
Furthermore I use the SQLite wrapper sqlite-net to do operations on the database.
I will explain this in detail that you understand my ...
0
votes
1answer
68 views
Upgrading database on app update
I am developing a Windows Store App that uses SQLite for Windows Runtime Extension and sqlite-net library to store data in a local SQLite database. This database is created in ...
0
votes
1answer
47 views
Can I use a List of String in a class intended for SQLite?
What limitations are there on data types used in a class that will be used by SQLite-net to represent a table? Specifically, can I use this:
public List<string> CoconutWaterBrands { get; set; }
...
0
votes
0answers
127 views
Why is my SQLite Insert not working?
This code:
private readonly string SQLitePath = Path.Combine(ApplicationData.Current.LocalFolder.Path, "platypiRUs.sqlite");
public async Task InsertLocationAsync(Duckbills_Locations locations)
{
...
1
vote
1answer
173 views
Is the SQLiteConnection disposed inside of a Transaction?
This works, but Resharper says, "Access to disposed closure" on the commented line
using (var db = new SQLiteConnection(SQLitePath))
{
db.CreateTable<Locations>();
...
0
votes
1answer
149 views
How are SQLite records updated?
This code's syntax is accepted:
public async Task UpdateLocationAsync(SOs_Locations locations)
{
var db = new SQLiteAsyncConnection(SQLitePath);
await db.UpdateAsync(locations);
}
...but I ...
0
votes
2answers
298 views
Cannot open SQLite database
Using this code:
public void InsertPlatypiRequestedRecord(string PlatypusId, string PlatypusName, DateTime invitationSentLocal)
{
var db = new SQLiteConnection(SQLitePath);
{
...
1
vote
1answer
202 views
How to query SQLite for whether a record exists?
In the commented-out line below, PlatypusId is red/not recognized, although it does exist in the corresponding table.
In the multi-line spanning assignment to queryResult, PlatypusId, where, and ...

