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

learn more… | top users | synonyms

-1
votes
1answer
54 views

C# Could not find the data provider. NET Framework requested

Im using Visual Studio 2010 Ultimate, C# WPF, MVVM, Sqlite. I have this project that is running without problems (On Windows 8 x64, .NET Framework 4 Client Proile), but I get all this exceptions when ...
0
votes
0answers
53 views

How do I setup an autogenerated id field in XAF's BusinessObjectDesigner [closed]

I've built an application using only the business object classes (.bo). I start with an new empty database and the application creates the required tables for me. I use sqlite as my database. Now, ...
0
votes
1answer
58 views

Retrieve/insert data using SQLiteDataAdapter

I'm currently creating a small application using Windows Forms and SQLite. After reading some tutorials I implemented this method for data retrieval: public DataTable GetDataTable(ref ...
3
votes
0answers
89 views

System.Data.SQLite design-time components in VS2012 targeting .NET 4.0

My application is targeting .NET 4.0 because we plan to continue support for Server 2003 and Windows XP for now. I'm using Visual Studio 2012 with Entity Framework 4.4 (listed as 5.0 in NuGet) and ...
0
votes
0answers
107 views

System.Data.SQLite and Entity Framework 5 not null enum types failure

I have a problem where System.Data.SQLite fails to add new records containing NOT NULL to a Sqlite3 database. An SQLiteException occurs with error constraint failed. Foo.Type may not be NULL when ...
0
votes
3answers
119 views

Could not load file or assembly System.Data.SQLite

I have a working windows form application (C# .NET 4) using an SQLite3 Database file for storing and reading data. When i deploy the application on the any machine other then the dev machine, i get ...
1
vote
3answers
133 views

read data from sqlite into C# then to sqlite

Reproducible Example: sqlite db test3.s3db has one table with name "MathRec": name score Bill 2 Mary 3 John 3 Code: using System; using System.Collections.Generic; using System.Linq; using ...
0
votes
2answers
46 views

Select all values in a column into a string in SQLite?

In SQL Server, I can do this with the help of Cursor (to loop through each row in the result set and build my string). But I don't know how to do the same in SQLite, this task is not like the ...
0
votes
1answer
26 views

SQLite concurrent connections issue

I am working on a VB.NET application. As per the nature of the application, One module has to monitor database (SQLite DB) each second. This Monitoring is done by simple select statement which run to ...
0
votes
1answer
44 views

Reading Sqlite files with a “light” dll

I have a small disk cleaner, only about 400 KB in size. In order to clean Firefox, I need access to their places.sqlite. Which is fine, I used those System.Data.Sqlite.dll and it works good. ...
1
vote
2answers
51 views

SQLite deadlock on mutual attempt to start transaction

I'm trying to start a transaction in two threads with code similar to this: var con = new SQLiteConnection (connectionstring); con.Open (); var cmd = new SQLiteCommand (query); cmd.Connection = con; ...
0
votes
1answer
31 views

Sqlite: Implementing a routine to rename columns including datatypes

I asked a similar question before but I did not get the answer I am looking for. I need some help with implementing rename columns (including datatypes) in Sqlite. I am aware of the overall steps but ...
1
vote
1answer
31 views

How to load a DLL from a shell extension?

I have written a small shell extension, the stub works, but want it to read some info from an SQLite database. SQLite needs 2 DLLs: System.Data.SQLite.dll: managed-only core assembly ...
1
vote
3answers
84 views

Store NaN values in SQLite database

I'd like to insert NaN values into SQLite database. I have Ent table with Id, StringColumn and DoubleColumn (not nullable) and I try use the following SQL statement: INSERT INTO Ent (Id, ...
0
votes
1answer
356 views

Added reference to System.Data.SQlite.Linq, still get assembly reference missing error

I am trying to use SQlite with Linq and I want to add mappings for my table manually. To do that, I added reference to my project my going to (right click) References > Add Reference and then ...
0
votes
1answer
118 views

Sqlite failing to correctly compare decimal numbers

I've having a weird problem where comparisons on a numeric column doesn't give the correct results. The input is the same, but if the coalesce() function is applied, suddenly no rows match. The table ...
0
votes
1answer
130 views

SQLite Query By Date using a TableAdapter

So... Progressing with my foray in to SQLite with VB.Net using System.Data.SQLite and am trying to generate a GetDataBy... with the a TableAdapter with a WHERE clause on a date field and the value is ...
2
votes
4answers
97 views

Do I have to Dispose the SQLiteCommand objects?

How do I treat the SQLiteCommand object, do I have to call Dispose() after ExecuteScalar, ExecuteNonQuery and ExecuteReader or not? The documentation example on SQLiteCommand doesn't dispose it ...
0
votes
1answer
280 views

Error opening conn with System.Data.SQLite, An attempt was made to load a program with an incorrect format. Interop.084

I'm new to C# and I'm trying to set up a DB connection using System.Data.SQLite. I'm using the Compact Framework binaries version 1.0.84. and windows Vista and .net 3.5 I'm working with SharpDevelop. ...
0
votes
2answers
48 views

Strange SQLite behavior- 'Database is locked' sometimes, but sometimes not

I'm using SQLite (via .NET's wrapper System.Data.SQLite) as my app's db for a long time, and everything was ok. Recently i start getting a 'Database is locked'. My DAL has few functions, each of them ...
-2
votes
1answer
343 views

Multiple access to a single SQLite database file via System.Data.SQLite and c#

As I can read from SQLite FAQ it supports multiple processes reading (SELECT) and only one process writing (INSERT, UPDATE, DELETE) database at any moment in time: SQLite uses reader/writer locks ...
0
votes
1answer
61 views

Is it possible to save '0' character in sqlite as a text

I have an UTF string with \0 character and text field in a sqlite table. When I tried to insert the string into table text field and then read it from the database I noticed that string value was ...
0
votes
2answers
44 views

SQLIte SUM datetimes

I have a database with rows, with time values. I want a SUM of that time values (generaly, the format are %H:%M). I used SUM value like that: SELECT SUM(n_hores) FROM table; But only I get 0.0. ...
2
votes
2answers
171 views

Why is System.Data.SQLite always returning False from queries on bool columns?

Here is my code: string sql = "SELECT * FROM rosters WHERE team_id = " + teamID; SQLiteCommand command = new SQLiteCommand(sql, db.GetConnection()); SQLiteDataReader reader = ...
0
votes
0answers
105 views

Sqlite on Windows CE 5.0 Emulator

I am developing a device application on windows ce using vs2005 and sqlite. I need to deploy this application on windows ce 5.0 emulator. The issue is when I am building/Deploying application on ...
0
votes
0answers
53 views

Which SQLite.Ado.Net package to use?

Now that the SQLite.Ado.Net project has moved from Phoenix Software Solutions to the SQLite team, there are several different packages available for each version of the .Net framework: Setups: ...
0
votes
2answers
372 views

SQLite .NET Insert ExecuteNonQuery Returns 1

SQL: CREATE TABLE main.LogRecord ( Id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL , TimeStamp DATETIME NOT NULL , Type TEXT NOT NULL , Severity TEXT NOT NULL , Message TEXT NOT NULL , Origin TEXT ...
1
vote
1answer
76 views

Error when saving ObjectContext after replacing Parent item and linking Child item to it

In my application, the interface allows the user to create and delete entities in an Entity Framework model. All changes are added to the ObjectContext, and saved only when the user selects "Save". ...
0
votes
0answers
32 views

retrieving wrong result in Stimul?

in this post I mentioned calibre's tables, I am using this code for retrieve my book list(I use calibre database): SELECT id, title, (SELECT name FROM books_authors_link AS bal JOIN ...
0
votes
1answer
287 views

EF 5.0 DbSet Find method returns null

In the code below the value of item1 is null, while item2 is not null. Any ideas why Find method does not work properly in this case? context= new EFModel.InputContext(); context.Items.Add(new Item{ ...
1
vote
1answer
804 views

System.Data.SQLite Visual Studio 2012 .NET 4.5 Won't Show in Data Source

I'm developing on a Winodws 7 x86 machine in Visual Studio 2012 using .NET 4.5. I installed the x86/x64 System.Data.SQLite official Nuget package for my project. But I still don't see it as an option ...
0
votes
1answer
89 views

SQLite Access is denied - works local but not public

when i access my ASP.Net IIS site (W2K3) from i get the following error: SQLite error Access is denied. [SQLiteException (0x80004005): SQLite error Access is denied.] It happens when i call: ...
2
votes
0answers
115 views

Callback Requested Query Abort on Transaction

I am using a recursive function that has a transaction in it, however the transaction causes a "callback requested query abort abort due to ROLLBACK" error. Here is my code: public ...
0
votes
0answers
75 views

Workaround for database changed from outside Event/Listener

As I learned from this question there is no technique built into SQLite to track database changes from somewhere else. This problem is to be solved in C#. I need this feature so, I am thinking about ...
0
votes
0answers
28 views

Using two versions of one assembly in a plugin architecture

I am currently writing a plug-in for an application. The application loads the libraries(dlls) I provide with my plug-in. In the plug-in I use SQLite, so I have references to the assemblies ...
0
votes
0answers
50 views

System.Data.SQLite - issue with 64bit OS

I've just built a software that reads data from a sqlite database that runs perfectly on x86 systems, but not in x64 ones. What should I do?! This is the error I get when I try to read data from the ...
0
votes
0answers
55 views

sqlite3_open() Failed

I want to create database using sqlite3_open, but it fail, please help!! NSArray *dirPath = NSSearchPathForDirectoriesInDomains(NSDocumentationDirectory, NSUserDomainMask, YES); NSFileManager ...
0
votes
1answer
92 views

Compiling sqlite Levenshtein function for System.Data.SQLite

OK, I'm new to compiling programs, and I have literally tried everything. I downloaded System.Data.SQLite from here: http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki This ...
0
votes
1answer
182 views

Mono.data.sqlite and System.data.sqlite conflict in Running Mono in VS2010

The assemblies/libraries Mono.data.sqlite and System.data.sqlite conflict in Running Mono in VS2010...I have downloaded "sqlite-netFx40-setup-bundle-x64-2010-1.0.83.0.exe" from the official website of ...
0
votes
1answer
129 views

Does Entity Framework + System.Data.SQLite provide a Database changed from outside listener / event?

Is there a way to get notified, when the database is newer than the DbContext of EF? In my case I develop an application that can be installed on several computers. They use the same Database. Since ...
4
votes
2answers
366 views

After SQLite update: Unable to find an entry point named 'sqlite3_changes_interop' in DLL 'SQLite.Interop.dll'

My C#/SQLite was working fine until I decided to update the SQLite DLLs (from 1.0.82.0 to 1.0.84.0). Now I get this crash: Unable to find an entry point named 'sqlite3_changes_interop' in DLL ...
0
votes
1answer
185 views

Debug / Show queries of SQLite (System.Data.SQLite) when used as provider for Entity Framework?

I use Microsoft Entity Framework with a SQLite Database. I am having a really hard time when it comes to debugging. Right now I only get this in my Output Windows after I called the ...
0
votes
1answer
228 views

How to merge System.Data.SQLite.DLL in EXE without using Assembly.LoadFile()

System.Data.SQLite.DLL is a mixed code DLL. It contains C and C#. I know how to add it as Embedded Resource, write it to a temp file and use Assembly.LoadFile() to load it. My question is there any ...
0
votes
1answer
169 views

BadImageFormatException on SQLite load on certain computer

I've created a very simple console app in .NET 4.0 that will run as a scheduled task. It looks for local files that are unmodified for a certain amount of time and then parses the file, inserts a ...
0
votes
1answer
77 views

Which ORM should be suitable for WPF 4.0 and SQLite [closed]

Which ORM should be suitable for WPF 4.0 and SQLite (read only database) application? team prefers Ado.net entity framework, I prefer ADO.Net than using any ORM since there is no db update only data ...
1
vote
2answers
75 views

SQLite DB built from fluent nhibernate description produces columns that are not nullable

I have the following code to create an in-memory SQLite DB for testing: Configuration config = null; FluentConfiguration fluentConfiguration = ...
3
votes
1answer
44 views

What version of the same DLL does VS choose if there are more than one in the GAC?

I've been developing for a while in a project involving SQLITE and .NET. Recently, SQLITE have released a new version. I decided to install it to the GAC(the same as I did with the previous ...
0
votes
1answer
140 views

System.Data.SQLite issue with “IN” clause in query

I am working on compact framework and using ADO for sqlite. My sqlite database consist of 3 million records. The table structure is same as explain in THIS QUESTION. I am trying to use a Data Adapter ...
2
votes
1answer
157 views

System.Data.SQLite issue on compact Framework 3.5

I am using sqlite in my compact framework application to log the events in system. I am also using System.Data.SQLite. The event has the time stamp to describe at what time it occurred. I am storing ...
0
votes
1answer
351 views

sql query LIKE problems on c# using sqlite

I'm using SQLite provider on c#. I'm trying to use SQL select * from table where name like 'part_of_name%'. But this query don't work correctly. Debug write System.InvalidOperationException in ...

1 2 3 4 5 7