I have an web application that I made and put up on a webserver. It pulls data from an access database that I use as a demo database. I am trying to get my connection string set up right to work with my database since it is now on the host server and not my computer. I have my access databse loaded up on my host webserver and and the host company has a page that test the connection to the databse and it tells me the connection string and then displays all the tables in the access database. So it is working proberly. The connection string they game me is below
set testconn=server.createobject("adodb.connection")
Set TestRs = Server.CreateObject ("ADODB.RecordSet")
cnstr = "DSN=DGFMed.demo"
testconn.Open cnstr
I dont know what my connection string should look like. What I have now is below and is not working
providerName="System.Data.OleDb" />
what do I need to change?
2007-03-01
07:52:28
·
2 answers
·
asked by
csdraska
1
in
Computers & Internet
➔ Programming & Design