Tagged Questions

System.Data.Sqlite is an ADO.NET provider for the SQLite embedded database.

learn more… | top users | synonyms

109
votes
5answers
29k views

What 'additional configuration' is necessary to reference a .NET 2.0 mixed mode assembly in a .NET 4.0 project?

I have a project in which I'd like to use some of the .NET 4.0 features but a core requirement is that I can use the System.Data.SQLite framework which is compiled against 2.X. I see mention of this ...
19
votes
1answer
432 views

In C#, is there any way to have an in-memory file linked as an in-memory SQLite database with System.Data.SQLite?

What I want to do is something along the lines of the following: using System.Data.SQLite; using System.IO; //My SQLite connection SQLiteConnection myCon; public void ReadAndOpenDB(string filename) ...
10
votes
3answers
648 views

Visual Studio loading the right (x86 or x64) dll!

I'm working on visual studio in an x86. I would like to build my application for both x32 and x64. But i need to use the sqlite .net connector wich has a dll for x86 apps and another dll for x64 apps. ...
10
votes
4answers
8k views

SQLite with Entity Framework

I'm having a problem with primary keys in Entity Framework when using SQLite. SQLite wants an explicit NULL in the VALUES list on an autoincrementing primary key column. I haven't actually looked at ...
8
votes
9answers
469 views

Can/should I run my web site against a SQLite database?

I'm about to build a new personal blog/portfolio site (which will be written in ASP.NET), and I'm going to run it against a SQLite database. There are a few reasons for this: The site will not be ...
7
votes
3answers
3k views

Advantages and Disadvantages of SQLite.NET and SQL Server Compact

I have used SQLite.NET many times. It always worked fine but I have a friend that is really pestering me that I should use instead SQL Server Compact so I stayed fully in Microsoft environment. Now, ...
6
votes
1answer
400 views

What is a mixed mode assembly?

I am looking at the System.Data.SQLite download page, and it lists mixed mode assembly for .NET 4 and a regular (I assume). My project that is going to use this library is all .NET 4 which will be ...
6
votes
1answer
198 views

Is there documentation that lists when/what exceptions are thrown by System.Data.Sqlite objects?

I'm having trouble finding documentation for the Sqlite.Net data provider (System.Data.Sqlite.dll) (new development has forked here) that lists what exceptions are thrown by the various classes and ...
6
votes
2answers
404 views

SQLite.NET Performance Using SQLiteParameter with LIKE operator

I am having an issue using SQLiteParameters and the LIKE operator in a SQLite query. Here is a snippet of code, and I apologize if I don't have enough code here. If that is the case, I can easily ...
5
votes
5answers
268 views

An ORM for sqlite.net for small applications

Can you please tell me if you know of an ORM open source project that supports sqlite.net for small applications, the use of NHibrenate seems to a little bit over the top for such program, yet there ...
5
votes
2answers
187 views

Loading an SQLite database from a byte stream in .NET

I'm trying to load an SQLite database that will be embedded in my executable as a resource. For those who are curious, it is because I use a small SQLite database to store configuration data, and I'd ...
5
votes
3answers
2k views

SQLite Insert very slow?

I recently read about SQLite and thought i would give a try . But when i see insert 1 record it was okay . But when i was inserting 100 it takes 5 sec and as the record size increases and so the time ...
5
votes
2answers
4k views

What causes System.BadImageFormatException when constructing System.Data.SQLite.SQLiteConnection

I've broken the code down to the smallest possible statement: Dim cn As System.Data.SQLite.SQLiteConnection And I get the following error when calling the code from a WinForm applicaiton: ...
5
votes
3answers
4k views

On some computers application can't load sqlite dll file

I wrote an application that uses sqlite and it works great on most of the systems. It is written in C#, and the only non-framework assembly is sqlite, which is included by System.Data.SQLite.dll . I ...
5
votes
4answers
4k views

Identity column maximum value in SQLite DBs

I have a purely academic question about SQLite databases. I am using SQLite.net to use a database in my WinForm project, and as I was setting up a new table, I got to thinking about the maximum ...
5
votes
1answer
796 views

Is SQLite.Net thread-safe?

I'm asking about the .Net implementation - System.Data.SQLite. Are there guidelines to using it in a thread-safe manner? I know SQLite itself can be compiled with or without thread safety - but how ...
5
votes
3answers
5k views

Entity Framework + SQLite deployment

I have a ASP.NET MVC app that is using SQLite database through Entity Framework. Everything works on VS 2008's local development webserver. However, deploying the web app to my service provider ...
5
votes
3answers
3k views

With System.Data.SQLite how do you specify a database file in the connect string using a relative path

Wanting to deploy my project on different servers I would prefer to be able to specify a connect string using a relative path. I can't seem to get that to work and want to know if there is some trick ...
5
votes
1answer
2k views

Create/Use User-defined functions in System.Data.SQLite?

User-Defined Functions & Collating Sequences Full support for user-defined functions and collating sequences means that in many cases if SQLite doesn't have a feature, you can write it ...
4
votes
4answers
428 views

System.Data.SQLite Not Supporting Multiple Transactions

So I am having an interesting issue with System.Data.SQLite and using multiple transactions. Basically I have the following code which fails: using (IDbConnection connection1 = new ...
4
votes
2answers
212 views

Random error when testing with NHibernate on an in-Memory SQLite db

I have a system which after getting a message - enqueues it (write to a table), and another process polls the DB and dequeues it for processing. In my automatic tests I've merged the operations in the ...
4
votes
1answer
796 views

Does SQLite support transactions across multiple databases?

I've done some searching and also read the FAQ on the SQLite site, no luck finding an answer to my question. It could very well be that my database approach is flawed, but at the moment, I would like ...
4
votes
4answers
3k views

FluentNhibernate and SQLite

I can't get SQLite Driver working in my sessionfactory. I downloaded SQLite 1.0.48 from http://sqlite.phxsoftware.com/ I have added the references to System.Data.SQLite in my Tests project. public ...
3
votes
1answer
62 views

How do I load assemblies into separate app domains with different target frameworks?

Here is my dilemma: The Problem I have SubProgram (a DLL) that uses System.Data.SQLite and both are compiled to .NET 2.0 My MainProgram (an EXE) is compiled to .NET 4.0 My MainProgram loads ...
3
votes
0answers
233 views

Is SQL Server Compact that much slower that SQLite? [closed]

Possible Duplicate: SQL Server CE 4.0 performance comparison I am evaluating whether to use SQL Server CE 4 or SQLite as local cache for a desktop app. I ran a simple test to see how they ...
3
votes
2answers
2k views

System.Data.Sqlite not being recognized by Visual Studio 2010 on Win 2K8 Server machine

I have a Windows Server 2008 (64-bit) box that I am doing development on. I've installed Visual Studio 2010 and System.Data.SQLite (from sqlite.phxsoftware.com). My problem is that the former is not ...
3
votes
2answers
1k views

SQLite in-memory database backup in .NET

How to get the SQLite in-memory data base backed up? I create the database in my Windows application. I want to take a database backup when I will close the application.
3
votes
1answer
774 views

How to use System.Data.SQLite under mono?

I downloaded System.Data.SQLite, and tried to compile the following sample code. using System; using System.Data; using System.Data.Common; using System.Data.SQLite; namespace test { class ...
3
votes
2answers
377 views

SQLite assembly not copied to output folder for unit testing

Problem: SQLite assembly referenced in my DAL assembly does not get copied to the output folder when doing unit tests (Copy local is set to true). I am working on a .Net 3.5 app in VS2008, with ...
3
votes
2answers
2k views

INSERT with transaction and parameters?

I'm learning about VB.Net and need to work with an SQLite database using the open-source System.Data.SQLite ADO.Net solution The examples I found in the HOWTO section are only in C#. Would someone ...
3
votes
1answer
390 views

How to inherit System.Data.SQLite in C#

I use System.Data.SQLite and C# for accesing SQLite databases/tables. For lazy and fast development reasons, I created my own library of classes to encapsulate some of System.Data.SQLite methods in ...
3
votes
4answers
206 views

How make a custom query on the fly?

I'm working in a database on vb.net with sqlite wich hosts a gallery and I want expand the search propieties. This the actual query string: "SELECT images.* FROM images JOIN nodes ON images.id = ...
3
votes
3answers
300 views

How to store masses of data offline and then update it into an SQLite database in batch?

Currently, I am trying to fill an SQLite database with tens of thousands of text data using this this method: SQLiteConnection = new SQLiteConnection(cntnStr); connection.Open(); foreach(Page p in ...
3
votes
3answers
6k views

System.Data.SQLite parameter issue

I have the following code: try { //Create connection SQLiteConnection conn = DBConnection.OpenDB(); //Verify user input, normally you give dbType a size, but Text is an exception var ...
2
votes
1answer
42 views

Supporting long unicode filepaths with System.Data.SQLite

I'm developing an application that needs to be able to create & manipulate SQLite databases in user-defined paths. I'm running into a problem I don't really understand. I'm testing my stuff ...
2
votes
1answer
66 views

SQLite: .Net much slower than native?

Here is my query: SELECT * FROM [GeoName] WHERE ((-26.3665122100029-Lat)*(-26.3665122100029-Lat))+((27.5978928658078-Long)*(27.5978928658078-Long)) < 0.005 ORDER BY ...
2
votes
1answer
26 views

Add a conditional clause to Delete a table's rows matching a list's items

I have a list of items (containing integer ids). I need to delete all row of a table X whose id column's data match with these list items. I am using sqlite and here is how I have tried ...
2
votes
3answers
172 views

Improve large data import performance into SQLite with C#

I am using C# to import a CSV with 6-8million rows. My table looks like this: CREATE TABLE [Data] ([ID] VARCHAR(100) NULL,[Raw] VARCHAR(200) NULL) CREATE INDEX IDLookup ON Data(ID ASC) I am ...
2
votes
3answers
99 views

How do I create and persist a SQLite DB from scratch in code using System.Data.SQLite and C#?

I have a database creation tool and am creating a database from scratch. This is done the same way as mentioned Here. It creates a temporary DB and I can add data to it. When I close the database it ...
2
votes
1answer
106 views

Project doesn't display “Import Project” referenced files (System.Data.SQLite solution)

I have some trouble with loading a System.Data.SQLite source solution. The System.Data.SQLite.2010 project seems to be empty, it is, indeed, does not contain references to files. However project file ...
2
votes
2answers
301 views

System.Data.SQLite and SubSonic 3: Works great in VS2008, but not in VS2010

Last year, I used SubSonic 3 and SQLite in a VS2008 project very successfully and was quite pleased with the results. Just recently, I tried to setup SubSonic 3 and SQLite in a VS2010 project and have ...
2
votes
5answers
2k views

Getting Fluent NHibernate to work with SQLite

I'm sure there is something simple I've not done but I'm trying to get Fluent NHibernate to work with Sqlite on my machine. I used NuGet to download fluent nhibernate and added the following entity ...
2
votes
0answers
345 views

Problem with EF4, SQLite, TPT hierarchy and batch insert

I've been struggling for a little while with the following issue using EF4 and SQLite ADO.NET provider: I have a model with a TPT hierarchy: There is an abstract base entity (Source), then first ...
2
votes
3answers
169 views

Method Optimisation - C#

I've developed a method that allows me to pass in a table (string), array of columns (string) and array of values (object) through the parameters which I then use to create a parameterized query. ...
2
votes
2answers
107 views

Fast interaction with database

I'm developing a project which gets some data from a hardware every 100 milliseconds. I'm using Visual Studio 2010 and C#. The data size is about 50KB in each round. The customer wants to log all the ...
2
votes
1answer
227 views

Getting exception using ProviderFactory to create a SQLite connection

I am trying to use the ProviderFactory.CreateConnection() to obtain a SQLite connection. I am getting a System.ArgumentException with the following message: "Keyword not supported: 'datetimeformat'." ...
2
votes
3answers
1k views

How to enable foreign key cascade delete by default in SQLite?

SQLite v3.7.5 Is there a way to enable SQLite Foreign Keys with cascade delete enabled by default? Given the following example: CREATE TABLE [Parent] ( [ParentId] INTEGER NOT NULL PRIMARY KEY ...
2
votes
3answers
472 views

When i select from sqlite column of type 'int' I can cast to .net int but when I select from 'integer' column I cannot

I'm using System.Data.SQLite, selecting from a sqlite database table where a column has type 'integer', and when I do something like this: int x = (int)reader["myColumn"]; it fails. The problem is ...
2
votes
1answer
920 views

C# .net -> SQLite error: Unable to open the database file

I'm getting "System.Data.SQLite.SQLiteException: Unable to open the database file." when I attempt to access the database to save a record upon the "first" opening of my program. Here's the thing, it ...
2
votes
1answer
307 views

C# SQLite Parameterized Select Using LIKE

I am trying to do an SQL query such as SELECT * FROM [TABLE] WHERE hostname LIKE '%myhostname%'; This works fine in plain SQL, but when I use System.Data.SQLite in C#, it only works with a ...

1 2 3 4