Conrad Jagger
Conrad Jagger

Reputation: 91

ADO.Net - Fetch multiple values from database

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

Answers (3)

ANANTH.S
ANANTH.S

Reputation: 119

Go to http://www.w3schools.com/, it will be help lot of can you do better.

Upvotes: 0

Alberto De Caro
Alberto De Caro

Reputation: 5213

ADO.NET @MSDN is a good starting point.

CodeProject features a good tutorial.

Upvotes: 2

Michael Tsai
Michael Tsai

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

Related Questions