I wish to put the version numbers of various drivers in an about box for my
web app. I can easily find the sql server version from a connection:
OdbcConnection oc = new
OdbcConnection(WebConfigurationManager.ConnectionStrings["acqlibdbConnectionString"].ToString());
oc.Open();
string strV...
more >>