Tutorials for .NET database app using SQLite

Posted by ChrisC on Stack Overflow See other posts from Stack Overflow or by ChrisC
Published on 2010-03-21T02:41:24Z Indexed on 2010/03/22 1:21 UTC
Read the original article Hit count: 477

Filed under:
|
|
|
|

I have some MS Access experience, and had a class on console c++ apps, now I am trying to develop my first program. It's a little C# db app. I have the db tables and columns planned and keyed into VS, but that's where I'm stuck. I'm needing C#/VS tutorials that will guide me on configuring relationships, datatyping, etc, on the db so I can get it ready for testing of the schema.

The only tutorials I've been able to find either talk about general db basics (ie, not helping me with VS/C#), or about C# communications with an existing SQL db.

Thank you.

(In case it matters, I'm using the open source System.Data.SQLite (sqlite.phxsoftware.com) for the db. I chose it over SQL Server CE after seeing a comparison between the two. Also I wanted a server-less version of SQL because this little app will be on other people's computers and I want to to do as little support as possible.)

© Stack Overflow or respective owner

Related posts about tutorials

Related posts about c#