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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Easy stupid question - what version of ADO am I running? 1

Status
Not open for further replies.

BillLumbergh

Programmer
Aug 15, 2001
51
US
Think this is probably a pretty stupid question, but:

How do I know what version of ADO my machine is running? I can't figure out where to look for this.

Thanks for any help.
 
check the readme in ....
\Program Files\Common Files\System\ado
 
Paste the following into a .VBS and execute it.

Set oConn = CreateObject("ADODB.Connection")
WScript.Echo oConn.Version
Set oConn = Nothing Jon Hawkins
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top