Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Ado.Net class

Status
Not open for further replies.

Fursten

Programmer
Dec 27, 2000
403
PT
Hi,

Im creating an ADO.NET Class for my application to encapsulate only some functionality of aDO.NET.

Does anyone knows where can I find some examples of an aDO.NET class?

Thank you
 
If you are looking to add functionality to an ADO.Net object then your best be is to start with inherits system.data.(base class) and add from there. There won't be much for samples because we don't know what you are adding.

If you are looking for a data abstraction layer, I would say to start with your own base object. Use ADO.Net to handle all of the data interaction privately, and only expose public properties for your field values and public methods to find, load, etc... data.

-Rick




----------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top