Ask a Question related to ASP Database, Design and Development.
-
KevinC #1
Problems with database connection using ASP Script
I Get following error::
ADODB.Recordset error '800a0e7d'
The connection cannot be used to perform this operation. It is either
closed or invalid in this context.
/guestbook/guestbook.asp, line 7
I'm not really a ASP-programmer, so if anyone could it would much
appreciated..
My Code:
<%
dim Conn, StrConn
Set Conn = Server.CreateObject("ADODB.Connection")
StrConn = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\INETPUB\WWWROOT\VARIETY\www\futurispower play\guestbook\db\powerplay.mdb;"
&_
"User ID=;" &_
"Password=;"
'Conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
' "Data Source=C:\INETPUB\WWWROOT\VARIETY\www\futurispower play\guestbook\db\powerplay.mdb;"
&_
' "User Id=;" &_
' "Password=;"
%>
Thanx in advance;
KC
KevinC Guest
-
database connection
What is being returned? An error raised by the DLL? If Err.Number <> 0 Then MsgBox "An error occurred in the DLL" ? If con Is Nothing Then... -
simple ASP database connection problems
My search form is found at: http://munzamedia.co.uk/markasp/basic%20DB%20project%20-%20netskills/search.htm ...but when I enter a search, there... -
CF database connection problems
Out of nowhere I started having database connection problems both my stage and production servers. I have CFMX 6.1 with latest updater, SQL Server... -
database connection problems
Hi, Just tried to create a database connection to a new site and get this error message: Client does not support authentication protocol... -
Database Connection Pooling in Perl CGI Script WITHOUT mod_perl
I'm working on a Perl CGI application, and I'd like to set up database connection pooling for obvious performance-related reasons. However, the... -
dany #2
Re: Problems with database connection using ASP Script
> ADODB.Recordset error '800a0e7d'
[url]http://www.aspfaq.com/show.asp?id=2285[/url]>
> The connection cannot be used to perform this operation. It is either
> closed or invalid in this context.
>
d.
dany Guest



Reply With Quote

