CRUD with ADO.NET

  • Thread starter Thread starter Torben Madsen
  • Start date Start date
T

Torben Madsen

Hello,

I have a C# problem that I hope you could help me with.

I'm making a program where I need data from a database using ADO.NET.

The problem is that I can't figure out how to retrieve the data without
using a datagrid (I presume that a dataset is the correct solution, when I
also need to CRUD (Create-Read-Update-Delete).

I need to use the data in my system instead of displaying it in the GUI, but
I haven't found any examples that could help me.

In other words: I need to read data from a database and storage it in a
arraylist (or whatever) with the possibility to CRUD using ADO.NET.



best regards

Torben
 
I guess you're starting with .NET.

I'd say you should start with some ADO.NET tutorials
You should read DataAdatper object documentation.

DataGrid Object does not work with the DataBase.

Good Luck..
Osvaldo
 
Back
Top