Search This Blog

Showing posts with label Sqlite. Show all posts
Showing posts with label Sqlite. Show all posts

Saturday, October 31, 2015

Setting up SQLite and EF6

Here is something that is more difficult than it should be.

My answer on StackOverflow:

My environment:

VS2013 Pro
Entity Framework 6: version 6.1.3
Sqlite .net library: System.Data.SQLite versions: 1.093 - 1.095

Do not use Nuget Manager to download 



Tuesday, August 25, 2015

Useful sqlite system queries


List tables and indexes in SQlite database:

SELECT * FROM sqlite_master


List columns for a table:

pragma table_info()