How can I tell what version of ADO I am using? [Print this FAQ]
Answer:
Use the Version property of the ADODB.Connection object. In this quick and dirty example we'll create a Connection object and print out its Version property:
'Create Connection object Dim objConn Set objConn = Server.CreateObject("ADODB.Connection")
'Print out version property Response.Write("You are using ADO Version " & objConn.Version)
FAQ posted by Scott Mitchell at
9/24/2000 12:40:01 AM to the
Databases, General category.
This FAQ has been viewed 43,809 times.
Do you have a FAQ you'd like to suggest?
Suggestions? Comments? If so, send it in!
Also, if you'd like to be a FAQ Admin (creating/editing FAQs),
let me know! If you are looking for other FAQs, be
sure to check out the 4Guys
FAQ and Commonly Asked Messageboard Questions!