Reputation: 91
I'm new to Dotnet, can someone please advice - I want to write a CLASS LIBARY which will help multiple functions and they will fetch values from database. This CLASS LIBRARY would then be compiled as DLL and given to other apps to use.
Can anyone provide me link - where I can find good samples of Ado.net or can anyprovide working code which shows me how to fetch multiple or single values from database (writing all this in class library)
Regards
Upvotes: 1
Views: 360
Reputation: 119
Go to http://www.w3schools.com/, it will be help lot of can you do better.
Upvotes: 0
Reputation: 5213
ADO.NET @MSDN is a good starting point.
CodeProject features a good tutorial.
Upvotes: 2
Reputation: 711
Check this out: Retrieving and Modifying Data in ADO.NET
If you already know how to create and open a connection to database, then read this section: DataAdapters and DataReaders
Upvotes: 2