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

0
votes
2answers
32 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
96 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
145 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 ...
1
vote
0answers
51 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 ...
0
votes
0answers
3 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
0answers
33 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 ...
0
votes
0answers
34 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 ...
0
votes
0answers
33 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
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) { ...
0
votes
0answers
43 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>();