I have been learning asp since last friday (for 8 days now) because i was tasked with the creation of this site. I'm a reasonably fast learner and i picked it up pretty quick. The only problem is that i haven't had the experience w/ asp to decode error messages. I've been looking on google at forums just like this for the past 3 days trying to implement whatever helped the guy before me and nothing has worked. With that being said...
Here's the error message:
Microsoft OLE DB Provider for ODBC Drivers
error '80004005'
[Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed
bla bla bla.
and here's the code for opening the db:
Code:
dim con
dim rs
set con=Server.CreateObject("ADODB.Connection")
con.Open "DSN=updatedb"
set rs=Server.CreateObject("ADODB.Recordset")
Can anyone see anything wrong w/ my code? Other than the fact that you think dsn-less connection is better (i understand dsn connection more so i used that). Thanks for you time.