SitePoint Sponsor |
|
User Tag List
Results 1 to 3 of 3
Thread: system.data.ado
-
Oct 30, 2007, 12:01 #1
- Join Date
- Mar 2006
- Posts
- 701
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
system.data.ado
I am new to .net, so I want to ask something almost simple.
I take a script from a book that has the
Code:using System.Data.ADO;
What is wrong?
There is a reference at System.Data
-
Oct 30, 2007, 12:49 #2
Ado.Net represents the entire system of accessing data.
Maybe the book has a typo or they have some namespace System.Data.ADO.
-
Oct 30, 2007, 13:25 #3
- Join Date
- Sep 2005
- Posts
- 23
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
System.Data.OleDb replaced System.Data.ADO
so, use
Code:using System.Data.OleDb;
Bookmarks