system.data.sqlite
Can i use Linq with SQLite if the tables (and table schemas) are generated at runtime?
Let\'s say I create a random table \"MyTable\" using a SQL statement (\"CREATE TABLE MyTable (col1, col2)\").How can I then use Linq to query that table?[详细]
2023-01-31 07:35 分类:问答what is the most efficient way to implement full text search on a sqlite database
I am using sqlite database for storing data. One开发者_如何学编程 of the table contains fields like name, summary, description, location etc. I want to implement full text search on this table i.e. I[详细]
2023-01-30 00:33 分类:问答'The database file is locked' with System.Data.SQLite
I am suddenly getting the following errors from SQLite after adding a new transaction: The database file is locked database[详细]
2023-01-28 14:33 分类:问答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 onl开发者_开发知识库y w[详细]
2023-01-28 02:29 分类:问答FunctionWithCollation unit test fails with System.Data.Sqlite
I downloaded SqlLite 3.7.3 and allegedly the best .NET wrapper for this database engine. I put them in the same directory and ran their provided test.exe.[详细]
2023-01-27 10:58 分类:问答System.Data.SQLite and strange File.Copy errors
I find that File.Copy will gladly copy a file onto itself without throwing an exception. By mistake I copied a sqlite database file onto itself, and the file is no longer a valid database.[详细]
2023-01-23 23:23 分类:问答What does "Data Source cannot be empty. Use :memory: to open an in-memory database" mean?
I recently converted my SQL Server database into SQLite DB. But when I try to open my SQLite using .Open() it throws me this error:[详细]
2023-01-22 13:05 分类:问答FluentNhib + System.Data.SQLLite VS2010
I know this question has been posted here before, and I\'ve trawled through as many answers as I could find, but I still can\'t get the simplest test in the world working.[详细]
2023-01-15 19:04 分类:问答SQLite optimization
I consider to use SQLi开发者_开发知识库te in a desktop application to persist my model. I plan to load all data to model classes when the user opens a project and write it again when the user saves it[详细]
2023-01-14 12:28 分类:问答Database application with C#
This is my first application with a database. I\'m using SQLite and Visual Studio. I have the database added, but how do I st开发者_JS百科ore and retrieve information from it? I\'m using System.Data.S[详细]
2023-01-13 14:54 分类:问答