cs3mw
07-23-2010, 07:40 AM
Hi I usually work on a standard ISS server and use the following connection string to connect to a mssql database:
<%
DIM objConn
dim mydb
Set objConn = Server.CreateObject("ADODB.Connection")
mydb = "PROVIDER=MSDASQL;DRIVER={SQL Server};" &_
"SERVER=SRV-OE;DATABASE=oldboysdatabase;UID=SEC\OEadmin;PWD=oeadminpa$$w0rd;"
objConn.open mydb
%>
Apoligies for the lack of code format the clients computer disables the pop ups!!!
This usually works however I am about to install this on a clients server and unfortunately my connection field is not working. Does anyone know how I would go about fnding the details that should be in the provider and the driver?
Kind regards
<%
DIM objConn
dim mydb
Set objConn = Server.CreateObject("ADODB.Connection")
mydb = "PROVIDER=MSDASQL;DRIVER={SQL Server};" &_
"SERVER=SRV-OE;DATABASE=oldboysdatabase;UID=SEC\OEadmin;PWD=oeadminpa$$w0rd;"
objConn.open mydb
%>
Apoligies for the lack of code format the clients computer disables the pop ups!!!
This usually works however I am about to install this on a clients server and unfortunately my connection field is not working. Does anyone know how I would go about fnding the details that should be in the provider and the driver?
Kind regards