Tagged Questions

0
votes
3answers
77 views

On some computers application can’t load sqlite dll file

Hello! 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 …
1
vote
2answers
55 views

SQLite saves float values in integer

I'm using System.Data.SQLite to save data to database. In table there are 2 columns defined as float. However when I save data to DB it saves only integer part. 12.2345 => 12 11.5 …
5
votes
9answers
182 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 …
0
votes
0answers
18 views

Subsonic 2.2 & Sqlite

Hi, I've tried to use Subsonic 2.2 & System.Data.Sqlite.Dll latest version (1.65.0), in my project. and recevied an error message, which gave me the idea subsonic got a proble …
0
votes
1answer
66 views

Modifying a SQLLite database schema and data via SubSonic 3 within a transaction

I'm using Visual Studio 2008, C#, SQLite via System.Data.SQLite with SubSonic 3. My application has gotten to a state where I need to upgrade the database schema (add columns, tri …
0
votes
1answer
59 views

C#, Storing HTML pages in an SQLite database

I want to cache large HTML pages in an SQLite database as blobs, but the HTML pages may ofcourse contain lots of characters which will corrupt the SQL statement. I'm not too happy …
0
votes
2answers
91 views

Is LINQ-to-SQL + SQLite.NET + Stored Procedures + VISUAL STUDIO 2008 possible?

Hi. So I want to retrieve data using stored procedures. Preferably via Linq2SQL. So I can do something like this (example): var productHistory = dbname.StoredProcedureMethod(valu …
1
vote
2answers
175 views

Where should I create my DbCommand instances?

I seemingly have two choices: Make my class implement IDisposable. Create my DbCommand instances as private readonly fields, and in the constructor, add the parameters that they …
0
votes
0answers
55 views

How to use the SQLite.NET designer Visual Studio add-in

I've installed SQLite.NET and during the installation I checked the boxes about design-time support, which should be a Visual Studio add-in I can use to model databases. However, …
1
vote
3answers
99 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(); …
2
votes
2answers
593 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 …
0
votes
2answers
130 views

Set ConnectionTimeout in System.Data.SQLite

I think that I'm experiencing a database connection timeout with my SQLite connection, but I'm not sure how to bump up the connection timeout. The command timeout can be set with …
3
votes
2answers
472 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' …
2
votes
3answers
514 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 abo …
1
vote
3answers
387 views

FluentNhibernate and SQLite

Hi, 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 m …

1 2 next
15 30 50 per page