Finding out ADO.NET version

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do i find out what version of ADO.NET is being used in my .NET
application.
Iam building vc++ application in visual studio.net 2003 (7.1 version) and
..NET framework version 1.1. I would like use the new feature of ADO.NET 2.0
and need to know i have the correct ado dll's on my system.?

The dlls i have on C:\Program Files\Common Files\System\ado folder is
msado15.dll like that, is it 1.x or 2.0 version?

Hari
 
ADO.NET is part of .NET framework. So, ADO.NET 2.0 is part of .NET Framework
2.0 (Not released yet, unless you are talking beta version). VS2003 only
works with .NET1.1 (or 1.0), not .NET 2.0. You need VS2005 (also beta) to
use ADO.NET2.0 beta.
 
Back
Top