Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Microsoft OLE DB Service Components error '80040e21'

Status
Not open for further replies.

aspijker

Programmer
Feb 14, 2007
37
NL
I'm getting the following error:

Microsoft OLE DB Service Components error '80040e21'

Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.

/includes/databaseverbinding.asp, line 16

I'm actually only trying to connect with the following code, but I just can't fix it, I have changed all options in IIS, but just won't work.

<%
dim connString
dim objConn

connString = "Driver={SQL Native Client}; Server=SQL2005; Database=dbnaam; Integrated Security=user;"
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.Open connString
%>

Please help!!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top