Hey guys, I\'m currently experiencing a very strange crash in Windows 7 in a C# Windows Forms application developed in Visual Studio 2008.
I\'m using SQLite.NET to access my databases, and in one particular case, I need to get a table schema because it\'s application-specific.
I want to implement a function for System.Data.SQLite in C#. Implementing the SQLiteFunction interface is easy (seen examples over the Internet).
Trying to store propert开发者_Go百科y of C#/.NET type byte[] in SQLite. Here is my mapping: <class name=\"MyClass\" lazy=\"false\" table=\"MyTable\">
I\'m creating a DB using SQLite from .NET and then inserting 1500 records (15 columns, only 3 with information). At this point the database file size is 73mb!! (huge for the amount of information invo
I downloaded System.Data.SQLite, and tried to compile the following sample code. using System; using System.Data;
I\'ve recently discovered the awesomeness of SQLite, specifically the .NET wrapper for SQLite at http://sqlite.phxsoftware.com/.
I\'ve done some searching and also read the FAQ on the SQLite site, no luck finding an answer to my question.
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 t开发者_如何学JAVAhe System.Data.SQLite framework which is compiled against 2.X. I see
I\'m trying to use System.Data.Sqlite library, and I\'m following the documentation about optimizing inserts so I copied this code directly out of the documentation: