views:

58

answers:

2

How do I set an identity column for sqlite in visual studio? I am performing a new query and am trying to create a new table using script.

A: 

Take a look at System.Data.SQLite here. It offers your ability to talk to sqlite inside visual studio.

J.W.
A: 

Check out this ADO.NET provider for SQLite. It will provide you full Visual Studio integration, so you can easily use the XSD tool to create tables within your SQLite database and set the Identity column accordingly.

Dillie-O