This topic is locked

How can you test the version of MDAC u have?

3/4/2005 8:49:40 AM
ASPRunnerPro General questions
garydee author

How can you test the version of MDAC u have on your hosts server?
Sergey is there a script you check with?
GD

Sergey Kornilov admin 3/4/2005

Hi,
here is the ASP code that prints MDAC version:

<%

'Create a Connection object

Dim objConn

Set objConn = Server.CreateObject("ADODB.Connection")
'Print out version property

Response.Write("You are using ADO Version " & objConn.Version)
%>

garydee author 3/7/2005

Thanks Sergey!
GD