sqlite-net is an open source, minimal library to allow .NET and Mono applications to store data in SQLite 3 databases.

learn more… | top users | synonyms

1
vote
0answers
77 views

SQLite: No such table

I am getting intermittent SQLiteExceptions claiming "no such table: HomepageSection". It is always the same table, but stopping the app and starting it again and the issue is gone. It sometimes ...
1
vote
1answer
54 views

async value not returned after lock released while using sqlite-net in winrt app

I recently encountered this very strange problem. Initially I have this block of code public async Task<string> Fetch(string module, string input) { if (module != this._moduleName) { ...
0
votes
0answers
32 views

SIGSEVC Exception

I am facing the following issue when using the sqlite-net lib: https://github.com/praeclarum/sqlite-net I would like to understand why the next crash is happening. Important: I cannot reproduce it. ...
0
votes
2answers
24 views

sqlite table columns aren't showing up

I'm using sqlite-net for wp8. I'm trying to insert a row into a table but I get a runtime error saying the column doesn't exist. When I put a breakpoint right before the line and go through the ...
0
votes
1answer
68 views

sqlite-net fails to create database in MonoDroid application

I start Xamarin Studio 4.0.3 and create a new solution for MonoDroid application. I am targetting version 2.3 or higher. I include Sqlite.cs from the sqlite-net (latest from site) project. I make ...
1
vote
1answer
49 views

sqlite-net like statement crashes

I have a SQL statement like this: Global.db.Query<Cards>("select * from Cards where card_name like ?", nameTextBox.Text); But I want to add % to both sides like this with the parameter value. ...
0
votes
1answer
32 views

Doesn't create save database

I`m using monodroid and work with database via sqlite-net library. In one application transaction all data correctly putting and getting from database, but when I deploy application next time my ...
2
votes
1answer
114 views

SQL to LINQ Query with date in where clause is not working

I try to query database item via LINQ but it is not working. The exception is just: Object reference not set to an instance of an object. The stacktrace is as unhelpful as the exception itself: ...
0
votes
0answers
7 views

SQLite-net: Can I store a class that has a member that is a class?

Well the question is in the subject but I'll try to elaborate: I'm using SQLite-net in a Xamarin iOS project. Up until now I had no issues with it. Today I tried inserting a class that has several ...
0
votes
2answers
42 views

The best way to store big number of files with adding quick search

In my Windows 8/RT app I use SQLite DataBase (sqlite-net) witch store in Isolated Storage. In DataBase I have a lot of data, including files(images, pdf's and other) links. I get those links from web ...
1
vote
1answer
154 views

Creating generic queries in SQLite-net C# using SQLiteAsyncConnection

I'm using SQLite-net (https://github.com/praeclarum/sqlite-net) for implementing a database using Mono on Android and have the following: public class DatabaseTestASync { private ...
0
votes
0answers
42 views

sqlite-net Silverlight and the Web Service

i have following problems: I have a web-service which is (auto)created out of a Dynamics Nav (2009 R2) Codeunit. I'm using this as a Web Reference in 2 other projects where anything is fine. In ...
1
vote
1answer
133 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
161 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 ...
2
votes
1answer
119 views

Query a table that schema is only known at runtime

We are creating a WinStore application using C# that stores some data locally within a SQLite database. We are currently using the SQLite-net library to access the database. There are a number of ...
0
votes
1answer
79 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
167 views

Sqlite data provider .net error: Different SQL response command prompt vs. SQLite ADO.NET Provider

I found a problem that perhaps is a bug in SQLite ADO.NET Provider. The environment is Windows 7 Pro, using Visual Studio 2012 Professional, with Visual Basic.net & ADO.NET 2.0. Data Provider ...
0
votes
1answer
52 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; } ...
3
votes
2answers
897 views

How do I use an existing sqlite database in my Windows Phone 8 app

I have a database from an existing android app that I need to import into my Windows Phone 8 app. Is the only way to do this to create some huge population script to be ran on the first loading of the ...
1
vote
1answer
49 views

PropertyInfo.CanWrite Property true in debug build, false in release build

We are building an android application using Xamarin's mono for android and for a cross platform persistence solution we are using sqlite-net In a debug build everything is OK, all use cases pass and ...
0
votes
0answers
40 views

Are there Complex Properties in Sqlite-net

Does Sqlite-net support Complex Properties. I am trying to create a framework for communicating between EF on the server, DataServiceContext on the client and use Sqlite-net as my local storage. I ...
0
votes
0answers
138 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
197 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
181 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 ...
3
votes
2answers
255 views

mvvmcross sqlite-net plugin for monotouch

I am implementing the excellent mvvmcross library in a multiplatform enterprise application. The monodroid sqlite plugin is working - I now need to implement monotouch functionality though. I was ...
0
votes
2answers
375 views

Cannot open SQLite database

Using this code: public void InsertPlatypiRequestedRecord(string PlatypusId, string PlatypusName, DateTime invitationSentLocal) { var db = new SQLiteConnection(SQLitePath); { ...
2
votes
1answer
283 views

No results from SQLite when trying to select by PrimaryKey using sqlite-net

For this example, I've defined the following class, which is saved inside an SQLite database: [SQLite.AutoIncrement, SQLite.PrimaryKey, SQLite.Indexed] public int ID { get; set; } [SQLite.Indexed] ...
1
vote
1answer
73 views

How to add userId to every query without adding it to all domain classes?

I'm working with sqlite and the c# sqlite-net library. Some of my entities: public class Product { [PrimaryKey, AutoIncrement] public int Id { get; set; } [MaxLength(50)] public ...
1
vote
1answer
265 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 ...
0
votes
0answers
44 views

How to set PK in the code in sqlite-net?

I know that is possible to set [PrimaryKey] attribute on the property. Is it possible to set PK. for example, while table creation? db.CreateTable<SqLiteObject>();
4
votes
1answer
342 views

Will using dblinq to SQLite in a Windows Store app pass store validation?

I've been trying to figure out how to get a decent LINQ to something working for ORM database access in a Windows Store app. All I've found is SQLite and the sqlite-net NuGet package. The latter ...
1
vote
2answers
105 views

Where are the sqlite drivers for monotouch?

On the sqlite-net github page, it indicates that in addition to this library, I also need the compiled sqlite2 binaries: 0 dependencies aside from a compiled form of the sqlite2 library. I ...