Winfom with sql database [closed]
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract op开发者_如何学Pythoninionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this questionHI,
i am workig in c# winforms from last few months ,but i don't have much information about SQL Database. So, i googled but couldn't find a proper tutorial or beginners guide.
Just to try and play,I am looking to create simple windows application with sql database containing Username and Password and which will allow me to log in after verifying username and password.
Any help ??
Beginers Guide To Access SQL SERVER from C#
May be you need both SQL Server as well ADO.NET concept to begin. Lets check the following link.
http://www.codeproject.com/KB/database/sql_in_csharp.aspx
Following are the things you could do,
Create Sql Server database, for that you need to install Sql server
, Sql Server Management Studio
.
Explore System.Data.SqlClient
namespace in .Net framework, it contains classes like SqlConnection, SqlCommand
etc
You will find tons of tutorials on the web.
Hope this help.
Following link will help you:
http://sharpertutorials.com/connecting-to-a-sql-server-database/
Also googling with following query will give you many links:
connecting to sql database using c sharp
精彩评论