user2119852
user2119852

Reputation: 37

database and images retrieve in windows forms

I'm new to c# and databases and I have a weird problem...

I want to add a database to my c# program and display an image from it. I stored the image in my database. I have no idea how to use oledb etc so someone showed me the table adapter one. It makes sense but i dont know how to start with it. Please help.

I normally dont ask online but i googled and all answers i get is oledb stuff. If someone can direct me to a tutorial to learn because it would be pointless doing something and not understanding what you're actually doing.

Upvotes: 2

Views: 249

Answers (1)

Derek
Derek

Reputation: 8630

You need to learn ADO.NET. There are many Tutorials available on the net.

Here is one example of retrieving data from your Access Database :-

http://csharp.net-informations.com/data-providers/csharp-oledbdataadapter.htm

Upvotes: 1

Related Questions