I am writing a desktop database application. I want my application to use SQL database. What is the best way to start.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can add a database to your project, e.g. a SQL Compact file, or a SQL Server Express file.
But remember: your client needs the drivers, and for the SQL Server Express they need to install the engine.
I would recommend SQL Compact, small, fast, and 99% change you don’t need more features than that.
How to start? I would suggest adding that database and then start reading on ADO.NET or the Entity Framework. That should provide you with some brain crunching examples.
Good luck!