Ask a Question related to ASP Database, Design and Development.
-
Matthew Louden #1
Error "Operation is not allowed when the object is closed"
The following ASP code yields the following error, but actually the new
record is stored
in database. The same error happens when the application deletes a record,
such as
sqlStmt ="delete from test where username='2323'" Any ideas? Thanks!
<%
Dim objRS, sqlStmt
Set objRS = Server.CreateObject ("ADODB.Recordset")
sqlStmt = "insert into test VALUES ('2341', '2341');"
objRS.Open sqlStmt, strConnect
objRS.Close
Set objRS = Nothing
%>
ADODB.Recordset error '800a0e78'
Operation is not allowed when the object is closed.
Matthew Louden Guest
-
Operation is not allowed when the object is closed
When I first open my ASP page, I get the error "Operation is not allowed when the object is closed" for a page containing a result set from a... -
Error: "The underlying connection was closed: Unable to connect to the remote server."
We have developed a Web Service with vb.net using VS 2003 on a Windows 2003 Server. The Test application that we developed is passing 6 parameters... -
Operation is not allowed when the object is closed.
i have this stored procedure... CREATE PROCEDURE p_sale_tax @locid INTEGER, @sdate VARCHAR(10), @edate VARCHAR(10) AS SET NOCOUNT ON SET @sdate... -
sp_executesql Operation is not allowed when the object is closed
help! fried brains.... asp calling a sqlserver7 stored proc which dynamically builds a sqlstatement & passes it to sp_executesql asp page gives... -
"Connection closed by remote server" error in Opera
I have a web site (www.on-the-matrix.com) that displays photos in a "slide show" format on ASPX pages that run in an inline frame on an ASP page (or... -
Matthew Louden #2
Error "Operation is not allowed when the object is closed"
The following ASP code yields the following error, but actually the new
record is stored
in database. The same error happens when the application deletes a record,
such as
sqlStmt ="delete from test where username='2323'" Any ideas? Thanks!
<%
Dim objRS, sqlStmt
Set objRS = Server.CreateObject ("ADODB.Recordset")
sqlStmt = "insert into test VALUES ('2341', '2341');"
objRS.Open sqlStmt, strConnect
objRS.Close
Set objRS = Nothing
%>
ADODB.Recordset error '800a0e78'
Operation is not allowed when the object is closed.
Matthew Louden Guest
-
Ken Schaefer #3
Re: Error "Operation is not allowed when the object is closed"
An action statement (INSERT, UPDATE, DELETE) does not return any records,
hence you can't close an non-open recordset. Instead, you cn do:
<%
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.Open strConnection
objConn.Execute(sqlStmt)
objConn.Close
Set objConn = Nothing
%>
Also, you should not use a connection string in the .Open method of a
recordset object, as this defeats connection pooling:
[url]http://support.microsoft.com/?id=191572[/url]
Cheers
Ken
"Matthew Louden" <jrefactors@hotmail.com> wrote in message
news:eOQxeSLhDHA.1672@TK2MSFTNGP12.phx.gbl...
: The following ASP code yields the following error, but actually the new
: record is stored
: in database. The same error happens when the application deletes a record,
: such as
: sqlStmt ="delete from test where username='2323'" Any ideas? Thanks!
:
: <%
: Dim objRS, sqlStmt
: Set objRS = Server.CreateObject ("ADODB.Recordset")
: sqlStmt = "insert into test VALUES ('2341', '2341');"
: objRS.Open sqlStmt, strConnect
: objRS.Close
: Set objRS = Nothing
: %>
:
: ADODB.Recordset error '800a0e78'
: Operation is not allowed when the object is closed.
:
:
:
:
:
Ken Schaefer Guest
-
Ken Schaefer #4
Re: Error "Operation is not allowed when the object is closed"
An action statement (INSERT, UPDATE, DELETE) does not return any records,
hence you can't close an non-open recordset. Instead, you cn do:
<%
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.Open strConnection
objConn.Execute(sqlStmt)
objConn.Close
Set objConn = Nothing
%>
Also, you should not use a connection string in the .Open method of a
recordset object, as this defeats connection pooling:
[url]http://support.microsoft.com/?id=191572[/url]
Cheers
Ken
"Matthew Louden" <jrefactors@hotmail.com> wrote in message
news:eOQxeSLhDHA.1672@TK2MSFTNGP12.phx.gbl...
: The following ASP code yields the following error, but actually the new
: record is stored
: in database. The same error happens when the application deletes a record,
: such as
: sqlStmt ="delete from test where username='2323'" Any ideas? Thanks!
:
: <%
: Dim objRS, sqlStmt
: Set objRS = Server.CreateObject ("ADODB.Recordset")
: sqlStmt = "insert into test VALUES ('2341', '2341');"
: objRS.Open sqlStmt, strConnect
: objRS.Close
: Set objRS = Nothing
: %>
:
: ADODB.Recordset error '800a0e78'
: Operation is not allowed when the object is closed.
:
:
:
:
:
Ken Schaefer Guest
-
Matthew Louden #5
Re: Error "Operation is not allowed when the object is closed"
Thanks Ken,
I just tried it, but it yields another error on line
objConn.Execute(sqlStmt)
Microsoft OLE DB Provider for SQL Server error '80040e2f'
'runners.dbo.User' ???, 'user_level' ?? NULL ?? ??? ? ????. ??? null? ??? ?
????. INSERT?(?) ??????.
any ideas??
"Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
news:OJtTofLhDHA.2164@TK2MSFTNGP09.phx.gbl...record,> An action statement (INSERT, UPDATE, DELETE) does not return any records,
> hence you can't close an non-open recordset. Instead, you cn do:
>
> <%
> Set objConn = Server.CreateObject("ADODB.Connection")
> objConn.Open strConnection
>
> objConn.Execute(sqlStmt)
>
> objConn.Close
> Set objConn = Nothing
> %>
>
> Also, you should not use a connection string in the .Open method of a
> recordset object, as this defeats connection pooling:
>
> [url]http://support.microsoft.com/?id=191572[/url]
>
> Cheers
> Ken
>
> "Matthew Louden" <jrefactors@hotmail.com> wrote in message
> news:eOQxeSLhDHA.1672@TK2MSFTNGP12.phx.gbl...
> : The following ASP code yields the following error, but actually the new
> : record is stored
> : in database. The same error happens when the application deletes a> : such as
> : sqlStmt ="delete from test where username='2323'" Any ideas? Thanks!
> :
> : <%
> : Dim objRS, sqlStmt
> : Set objRS = Server.CreateObject ("ADODB.Recordset")
> : sqlStmt = "insert into test VALUES ('2341', '2341');"
> : objRS.Open sqlStmt, strConnect
> : objRS.Close
> : Set objRS = Nothing
> : %>
> :
> : ADODB.Recordset error '800a0e78'
> : Operation is not allowed when the object is closed.
> :
> :
> :
> :
> :
>
>
Matthew Louden Guest
-
Matthew Louden #6
Re: Error "Operation is not allowed when the object is closed"
Thanks Ken,
I just tried it, but it yields another error on line
objConn.Execute(sqlStmt)
Microsoft OLE DB Provider for SQL Server error '80040e2f'
'runners.dbo.User' ???, 'user_level' ?? NULL ?? ??? ? ????. ??? null? ??? ?
????. INSERT?(?) ??????.
any ideas??
"Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
news:OJtTofLhDHA.2164@TK2MSFTNGP09.phx.gbl...record,> An action statement (INSERT, UPDATE, DELETE) does not return any records,
> hence you can't close an non-open recordset. Instead, you cn do:
>
> <%
> Set objConn = Server.CreateObject("ADODB.Connection")
> objConn.Open strConnection
>
> objConn.Execute(sqlStmt)
>
> objConn.Close
> Set objConn = Nothing
> %>
>
> Also, you should not use a connection string in the .Open method of a
> recordset object, as this defeats connection pooling:
>
> [url]http://support.microsoft.com/?id=191572[/url]
>
> Cheers
> Ken
>
> "Matthew Louden" <jrefactors@hotmail.com> wrote in message
> news:eOQxeSLhDHA.1672@TK2MSFTNGP12.phx.gbl...
> : The following ASP code yields the following error, but actually the new
> : record is stored
> : in database. The same error happens when the application deletes a> : such as
> : sqlStmt ="delete from test where username='2323'" Any ideas? Thanks!
> :
> : <%
> : Dim objRS, sqlStmt
> : Set objRS = Server.CreateObject ("ADODB.Recordset")
> : sqlStmt = "insert into test VALUES ('2341', '2341');"
> : objRS.Open sqlStmt, strConnect
> : objRS.Close
> : Set objRS = Nothing
> : %>
> :
> : ADODB.Recordset error '800a0e78'
> : Operation is not allowed when the object is closed.
> :
> :
> :
> :
> :
>
>
Matthew Louden Guest
-
Matthew Louden #7
Re: Error "Operation is not allowed when the object is closed"
I got the run-time error: Microsoft OLE DB Provider for SQL Server error
'80040e2f'
I read this [url]http://www.aspfaq.com/show.asp?id=2370[/url], but I am adding a
record, not deleting a record. Since I migrate the whole web pages and
database from one machine to another machine, it worked everything fine in
the old machine. I already changed the connection string, and necessary
links, but the logic should be unchanged.
Please advise! Thanks!
"Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
news:OJtTofLhDHA.2164@TK2MSFTNGP09.phx.gbl...record,> An action statement (INSERT, UPDATE, DELETE) does not return any records,
> hence you can't close an non-open recordset. Instead, you cn do:
>
> <%
> Set objConn = Server.CreateObject("ADODB.Connection")
> objConn.Open strConnection
>
> objConn.Execute(sqlStmt)
>
> objConn.Close
> Set objConn = Nothing
> %>
>
> Also, you should not use a connection string in the .Open method of a
> recordset object, as this defeats connection pooling:
>
> [url]http://support.microsoft.com/?id=191572[/url]
>
> Cheers
> Ken
>
> "Matthew Louden" <jrefactors@hotmail.com> wrote in message
> news:eOQxeSLhDHA.1672@TK2MSFTNGP12.phx.gbl...
> : The following ASP code yields the following error, but actually the new
> : record is stored
> : in database. The same error happens when the application deletes a> : such as
> : sqlStmt ="delete from test where username='2323'" Any ideas? Thanks!
> :
> : <%
> : Dim objRS, sqlStmt
> : Set objRS = Server.CreateObject ("ADODB.Recordset")
> : sqlStmt = "insert into test VALUES ('2341', '2341');"
> : objRS.Open sqlStmt, strConnect
> : objRS.Close
> : Set objRS = Nothing
> : %>
> :
> : ADODB.Recordset error '800a0e78'
> : Operation is not allowed when the object is closed.
> :
> :
> :
> :
> :
>
>
Matthew Louden Guest
-
Matthew Louden #8
Re: Error "Operation is not allowed when the object is closed"
I got the run-time error: Microsoft OLE DB Provider for SQL Server error
'80040e2f'
I read this [url]http://www.aspfaq.com/show.asp?id=2370[/url], but I am adding a
record, not deleting a record. Since I migrate the whole web pages and
database from one machine to another machine, it worked everything fine in
the old machine. I already changed the connection string, and necessary
links, but the logic should be unchanged.
Please advise! Thanks!
"Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
news:OJtTofLhDHA.2164@TK2MSFTNGP09.phx.gbl...record,> An action statement (INSERT, UPDATE, DELETE) does not return any records,
> hence you can't close an non-open recordset. Instead, you cn do:
>
> <%
> Set objConn = Server.CreateObject("ADODB.Connection")
> objConn.Open strConnection
>
> objConn.Execute(sqlStmt)
>
> objConn.Close
> Set objConn = Nothing
> %>
>
> Also, you should not use a connection string in the .Open method of a
> recordset object, as this defeats connection pooling:
>
> [url]http://support.microsoft.com/?id=191572[/url]
>
> Cheers
> Ken
>
> "Matthew Louden" <jrefactors@hotmail.com> wrote in message
> news:eOQxeSLhDHA.1672@TK2MSFTNGP12.phx.gbl...
> : The following ASP code yields the following error, but actually the new
> : record is stored
> : in database. The same error happens when the application deletes a> : such as
> : sqlStmt ="delete from test where username='2323'" Any ideas? Thanks!
> :
> : <%
> : Dim objRS, sqlStmt
> : Set objRS = Server.CreateObject ("ADODB.Recordset")
> : sqlStmt = "insert into test VALUES ('2341', '2341');"
> : objRS.Open sqlStmt, strConnect
> : objRS.Close
> : Set objRS = Nothing
> : %>
> :
> : ADODB.Recordset error '800a0e78'
> : Operation is not allowed when the object is closed.
> :
> :
> :
> :
> :
>
>
Matthew Louden Guest
-
Bob Barrows #9
Re: Error "Operation is not allowed when the object is closed"
Please show your revised code. we're not mind readers.
Matthew Louden wrote:> I got the run-time error: Microsoft OLE DB Provider for SQL Server
> error '80040e2f'
>
> I read this [url]http://www.aspfaq.com/show.asp?id=2370[/url], but I am adding a
> record, not deleting a record. Since I migrate the whole web pages and
> database from one machine to another machine, it worked everything
> fine in the old machine. I already changed the connection string, and
> necessary links, but the logic should be unchanged.
>
> Please advise! Thanks!
>
>
> "Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
> news:OJtTofLhDHA.2164@TK2MSFTNGP09.phx.gbl...>> An action statement (INSERT, UPDATE, DELETE) does not return any
>> records, hence you can't close an non-open recordset. Instead, you
>> cn do:
>>
>> <%
>> Set objConn = Server.CreateObject("ADODB.Connection")
>> objConn.Open strConnection
>>
>> objConn.Execute(sqlStmt)
>>
>> objConn.Close
>> Set objConn = Nothing
>> %>
>>
>> Also, you should not use a connection string in the .Open method of a
>> recordset object, as this defeats connection pooling:
>>
>> [url]http://support.microsoft.com/?id=191572[/url]
>>
>> Cheers
>> Ken
>>
>> "Matthew Louden" <jrefactors@hotmail.com> wrote in message
>> news:eOQxeSLhDHA.1672@TK2MSFTNGP12.phx.gbl...>>> The following ASP code yields the following error, but actually the
>>> new record is stored
>>> in database. The same error happens when the application deletes a
>>> record, such as
>>> sqlStmt ="delete from test where username='2323'" Any ideas?
>>> Thanks!
>>>
>>> <%
>>> Dim objRS, sqlStmt
>>> Set objRS = Server.CreateObject ("ADODB.Recordset")
>>> sqlStmt = "insert into test VALUES ('2341', '2341');"
>>> objRS.Open sqlStmt, strConnect
>>> objRS.Close
>>> Set objRS = Nothing
>>> %>
>>>
>>> ADODB.Recordset error '800a0e78'
>>> Operation is not allowed when the object is closed.
Bob Barrows Guest
-
Bob Barrows #10
Re: Error "Operation is not allowed when the object is closed"
Please show your revised code. we're not mind readers.
Matthew Louden wrote:> I got the run-time error: Microsoft OLE DB Provider for SQL Server
> error '80040e2f'
>
> I read this [url]http://www.aspfaq.com/show.asp?id=2370[/url], but I am adding a
> record, not deleting a record. Since I migrate the whole web pages and
> database from one machine to another machine, it worked everything
> fine in the old machine. I already changed the connection string, and
> necessary links, but the logic should be unchanged.
>
> Please advise! Thanks!
>
>
> "Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
> news:OJtTofLhDHA.2164@TK2MSFTNGP09.phx.gbl...>> An action statement (INSERT, UPDATE, DELETE) does not return any
>> records, hence you can't close an non-open recordset. Instead, you
>> cn do:
>>
>> <%
>> Set objConn = Server.CreateObject("ADODB.Connection")
>> objConn.Open strConnection
>>
>> objConn.Execute(sqlStmt)
>>
>> objConn.Close
>> Set objConn = Nothing
>> %>
>>
>> Also, you should not use a connection string in the .Open method of a
>> recordset object, as this defeats connection pooling:
>>
>> [url]http://support.microsoft.com/?id=191572[/url]
>>
>> Cheers
>> Ken
>>
>> "Matthew Louden" <jrefactors@hotmail.com> wrote in message
>> news:eOQxeSLhDHA.1672@TK2MSFTNGP12.phx.gbl...>>> The following ASP code yields the following error, but actually the
>>> new record is stored
>>> in database. The same error happens when the application deletes a
>>> record, such as
>>> sqlStmt ="delete from test where username='2323'" Any ideas?
>>> Thanks!
>>>
>>> <%
>>> Dim objRS, sqlStmt
>>> Set objRS = Server.CreateObject ("ADODB.Recordset")
>>> sqlStmt = "insert into test VALUES ('2341', '2341');"
>>> objRS.Open sqlStmt, strConnect
>>> objRS.Close
>>> Set objRS = Nothing
>>> %>
>>>
>>> ADODB.Recordset error '800a0e78'
>>> Operation is not allowed when the object is closed.
Bob Barrows Guest
-
Matthew Louden #11
Re: Error "Operation is not allowed when the object is closed"
I got the run-time error: Microsoft OLE DB Provider for SQL Server error
'80040e2f' on line
conn.Execute(InsertUsersSql)
Here's the code fragment:
<%
Set conn = Server.CreateObject ("ADODB.Connection")
conn.Open strConnect
InsertUsersSql= "Insert Into Users VALUES ('myusername', 'mypassword');"
Response.Write InsertUsersSql
conn.Execute(InsertUsersSql)
conn.Close
Set conn = Nothing
%>
I read this [url]http://www.aspfaq.com/show.asp?id=2370[/url], but I am adding a
record, not deleting a record. Any ideas??
"Bob Barrows" <reb01501@NOyahoo.SPAMcom> wrote in message
news:OBGJJpShDHA.2516@TK2MSFTNGP09.phx.gbl...> Please show your revised code. we're not mind readers.
>
> Matthew Louden wrote:>> > I got the run-time error: Microsoft OLE DB Provider for SQL Server
> > error '80040e2f'
> >
> > I read this [url]http://www.aspfaq.com/show.asp?id=2370[/url], but I am adding a
> > record, not deleting a record. Since I migrate the whole web pages and
> > database from one machine to another machine, it worked everything
> > fine in the old machine. I already changed the connection string, and
> > necessary links, but the logic should be unchanged.
> >
> > Please advise! Thanks!
> >
> >
> > "Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
> > news:OJtTofLhDHA.2164@TK2MSFTNGP09.phx.gbl...> >> An action statement (INSERT, UPDATE, DELETE) does not return any
> >> records, hence you can't close an non-open recordset. Instead, you
> >> cn do:
> >>
> >> <%
> >> Set objConn = Server.CreateObject("ADODB.Connection")
> >> objConn.Open strConnection
> >>
> >> objConn.Execute(sqlStmt)
> >>
> >> objConn.Close
> >> Set objConn = Nothing
> >> %>
> >>
> >> Also, you should not use a connection string in the .Open method of a
> >> recordset object, as this defeats connection pooling:
> >>
> >> [url]http://support.microsoft.com/?id=191572[/url]
> >>
> >> Cheers
> >> Ken
> >>
> >> "Matthew Louden" <jrefactors@hotmail.com> wrote in message
> >> news:eOQxeSLhDHA.1672@TK2MSFTNGP12.phx.gbl...
> >>> The following ASP code yields the following error, but actually the
> >>> new record is stored
> >>> in database. The same error happens when the application deletes a
> >>> record, such as
> >>> sqlStmt ="delete from test where username='2323'" Any ideas?
> >>> Thanks!
> >>>
> >>> <%
> >>> Dim objRS, sqlStmt
> >>> Set objRS = Server.CreateObject ("ADODB.Recordset")
> >>> sqlStmt = "insert into test VALUES ('2341', '2341');"
> >>> objRS.Open sqlStmt, strConnect
> >>> objRS.Close
> >>> Set objRS = Nothing
> >>> %>
> >>>
> >>> ADODB.Recordset error '800a0e78'
> >>> Operation is not allowed when the object is closed.
>
>
Matthew Louden Guest
-
Matthew Louden #12
Re: Error "Operation is not allowed when the object is closed"
I got the run-time error: Microsoft OLE DB Provider for SQL Server error
'80040e2f' on line
conn.Execute(InsertUsersSql)
Here's the code fragment:
<%
Set conn = Server.CreateObject ("ADODB.Connection")
conn.Open strConnect
InsertUsersSql= "Insert Into Users VALUES ('myusername', 'mypassword');"
Response.Write InsertUsersSql
conn.Execute(InsertUsersSql)
conn.Close
Set conn = Nothing
%>
I read this [url]http://www.aspfaq.com/show.asp?id=2370[/url], but I am adding a
record, not deleting a record. Any ideas??
"Bob Barrows" <reb01501@NOyahoo.SPAMcom> wrote in message
news:OBGJJpShDHA.2516@TK2MSFTNGP09.phx.gbl...> Please show your revised code. we're not mind readers.
>
> Matthew Louden wrote:>> > I got the run-time error: Microsoft OLE DB Provider for SQL Server
> > error '80040e2f'
> >
> > I read this [url]http://www.aspfaq.com/show.asp?id=2370[/url], but I am adding a
> > record, not deleting a record. Since I migrate the whole web pages and
> > database from one machine to another machine, it worked everything
> > fine in the old machine. I already changed the connection string, and
> > necessary links, but the logic should be unchanged.
> >
> > Please advise! Thanks!
> >
> >
> > "Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
> > news:OJtTofLhDHA.2164@TK2MSFTNGP09.phx.gbl...> >> An action statement (INSERT, UPDATE, DELETE) does not return any
> >> records, hence you can't close an non-open recordset. Instead, you
> >> cn do:
> >>
> >> <%
> >> Set objConn = Server.CreateObject("ADODB.Connection")
> >> objConn.Open strConnection
> >>
> >> objConn.Execute(sqlStmt)
> >>
> >> objConn.Close
> >> Set objConn = Nothing
> >> %>
> >>
> >> Also, you should not use a connection string in the .Open method of a
> >> recordset object, as this defeats connection pooling:
> >>
> >> [url]http://support.microsoft.com/?id=191572[/url]
> >>
> >> Cheers
> >> Ken
> >>
> >> "Matthew Louden" <jrefactors@hotmail.com> wrote in message
> >> news:eOQxeSLhDHA.1672@TK2MSFTNGP12.phx.gbl...
> >>> The following ASP code yields the following error, but actually the
> >>> new record is stored
> >>> in database. The same error happens when the application deletes a
> >>> record, such as
> >>> sqlStmt ="delete from test where username='2323'" Any ideas?
> >>> Thanks!
> >>>
> >>> <%
> >>> Dim objRS, sqlStmt
> >>> Set objRS = Server.CreateObject ("ADODB.Recordset")
> >>> sqlStmt = "insert into test VALUES ('2341', '2341');"
> >>> objRS.Open sqlStmt, strConnect
> >>> objRS.Close
> >>> Set objRS = Nothing
> >>> %>
> >>>
> >>> ADODB.Recordset error '800a0e78'
> >>> Operation is not allowed when the object is closed.
>
>
Matthew Louden Guest
-
Ken Schaefer #13
Re: Error "Operation is not allowed when the object is closed"
What columns do you have in the table Users? If there are more than two,
then do:
InsertUsersSql = _
"INSERT INTO Users (field1, field2) & _
"VALUES ('myusername', 'mypassword');"
(changing field1, and field2 to be the names of the fields you want the
values inserted into)
Cheers
Ken
"Matthew Louden" <jrefactors@hotmail.com> wrote in message
news:e$jUR5ThDHA.2512@TK2MSFTNGP09.phx.gbl...
: I got the run-time error: Microsoft OLE DB Provider for SQL Server error
: '80040e2f' on line
: conn.Execute(InsertUsersSql)
:
: Here's the code fragment:
: <%
: Set conn = Server.CreateObject ("ADODB.Connection")
: conn.Open strConnect
: InsertUsersSql= "Insert Into Users VALUES ('myusername', 'mypassword');"
: Response.Write InsertUsersSql
: conn.Execute(InsertUsersSql)
: conn.Close
: Set conn = Nothing
: %>
:
: I read this [url]http://www.aspfaq.com/show.asp?id=2370[/url], but I am adding a
: record, not deleting a record. Any ideas??
:
: "Bob Barrows" <reb01501@NOyahoo.SPAMcom> wrote in message
: news:OBGJJpShDHA.2516@TK2MSFTNGP09.phx.gbl...
: > Please show your revised code. we're not mind readers.
: >
: > Matthew Louden wrote:
: > > I got the run-time error: Microsoft OLE DB Provider for SQL Server
: > > error '80040e2f'
: > >
: > > I read this [url]http://www.aspfaq.com/show.asp?id=2370[/url], but I am adding a
: > > record, not deleting a record. Since I migrate the whole web pages and
: > > database from one machine to another machine, it worked everything
: > > fine in the old machine. I already changed the connection string, and
: > > necessary links, but the logic should be unchanged.
: > >
: > > Please advise! Thanks!
: > >
: > >
: > > "Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
: > > news:OJtTofLhDHA.2164@TK2MSFTNGP09.phx.gbl...
: > >> An action statement (INSERT, UPDATE, DELETE) does not return any
: > >> records, hence you can't close an non-open recordset. Instead, you
: > >> cn do:
: > >>
: > >> <%
: > >> Set objConn = Server.CreateObject("ADODB.Connection")
: > >> objConn.Open strConnection
: > >>
: > >> objConn.Execute(sqlStmt)
: > >>
: > >> objConn.Close
: > >> Set objConn = Nothing
: > >> %>
: > >>
: > >> Also, you should not use a connection string in the .Open method of a
: > >> recordset object, as this defeats connection pooling:
: > >>
: > >> [url]http://support.microsoft.com/?id=191572[/url]
: > >>
: > >> Cheers
: > >> Ken
: > >>
: > >> "Matthew Louden" <jrefactors@hotmail.com> wrote in message
: > >> news:eOQxeSLhDHA.1672@TK2MSFTNGP12.phx.gbl...
: > >>> The following ASP code yields the following error, but actually the
: > >>> new record is stored
: > >>> in database. The same error happens when the application deletes a
: > >>> record, such as
: > >>> sqlStmt ="delete from test where username='2323'" Any ideas?
: > >>> Thanks!
: > >>>
: > >>> <%
: > >>> Dim objRS, sqlStmt
: > >>> Set objRS = Server.CreateObject ("ADODB.Recordset")
: > >>> sqlStmt = "insert into test VALUES ('2341', '2341');"
: > >>> objRS.Open sqlStmt, strConnect
: > >>> objRS.Close
: > >>> Set objRS = Nothing
: > >>> %>
: > >>>
: > >>> ADODB.Recordset error '800a0e78'
: > >>> Operation is not allowed when the object is closed.
: >
: >
: >
:
:
Ken Schaefer Guest
-
Ken Schaefer #14
Re: Error "Operation is not allowed when the object is closed"
What columns do you have in the table Users? If there are more than two,
then do:
InsertUsersSql = _
"INSERT INTO Users (field1, field2) & _
"VALUES ('myusername', 'mypassword');"
(changing field1, and field2 to be the names of the fields you want the
values inserted into)
Cheers
Ken
"Matthew Louden" <jrefactors@hotmail.com> wrote in message
news:e$jUR5ThDHA.2512@TK2MSFTNGP09.phx.gbl...
: I got the run-time error: Microsoft OLE DB Provider for SQL Server error
: '80040e2f' on line
: conn.Execute(InsertUsersSql)
:
: Here's the code fragment:
: <%
: Set conn = Server.CreateObject ("ADODB.Connection")
: conn.Open strConnect
: InsertUsersSql= "Insert Into Users VALUES ('myusername', 'mypassword');"
: Response.Write InsertUsersSql
: conn.Execute(InsertUsersSql)
: conn.Close
: Set conn = Nothing
: %>
:
: I read this [url]http://www.aspfaq.com/show.asp?id=2370[/url], but I am adding a
: record, not deleting a record. Any ideas??
:
: "Bob Barrows" <reb01501@NOyahoo.SPAMcom> wrote in message
: news:OBGJJpShDHA.2516@TK2MSFTNGP09.phx.gbl...
: > Please show your revised code. we're not mind readers.
: >
: > Matthew Louden wrote:
: > > I got the run-time error: Microsoft OLE DB Provider for SQL Server
: > > error '80040e2f'
: > >
: > > I read this [url]http://www.aspfaq.com/show.asp?id=2370[/url], but I am adding a
: > > record, not deleting a record. Since I migrate the whole web pages and
: > > database from one machine to another machine, it worked everything
: > > fine in the old machine. I already changed the connection string, and
: > > necessary links, but the logic should be unchanged.
: > >
: > > Please advise! Thanks!
: > >
: > >
: > > "Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
: > > news:OJtTofLhDHA.2164@TK2MSFTNGP09.phx.gbl...
: > >> An action statement (INSERT, UPDATE, DELETE) does not return any
: > >> records, hence you can't close an non-open recordset. Instead, you
: > >> cn do:
: > >>
: > >> <%
: > >> Set objConn = Server.CreateObject("ADODB.Connection")
: > >> objConn.Open strConnection
: > >>
: > >> objConn.Execute(sqlStmt)
: > >>
: > >> objConn.Close
: > >> Set objConn = Nothing
: > >> %>
: > >>
: > >> Also, you should not use a connection string in the .Open method of a
: > >> recordset object, as this defeats connection pooling:
: > >>
: > >> [url]http://support.microsoft.com/?id=191572[/url]
: > >>
: > >> Cheers
: > >> Ken
: > >>
: > >> "Matthew Louden" <jrefactors@hotmail.com> wrote in message
: > >> news:eOQxeSLhDHA.1672@TK2MSFTNGP12.phx.gbl...
: > >>> The following ASP code yields the following error, but actually the
: > >>> new record is stored
: > >>> in database. The same error happens when the application deletes a
: > >>> record, such as
: > >>> sqlStmt ="delete from test where username='2323'" Any ideas?
: > >>> Thanks!
: > >>>
: > >>> <%
: > >>> Dim objRS, sqlStmt
: > >>> Set objRS = Server.CreateObject ("ADODB.Recordset")
: > >>> sqlStmt = "insert into test VALUES ('2341', '2341');"
: > >>> objRS.Open sqlStmt, strConnect
: > >>> objRS.Close
: > >>> Set objRS = Nothing
: > >>> %>
: > >>>
: > >>> ADODB.Recordset error '800a0e78'
: > >>> Operation is not allowed when the object is closed.
: >
: >
: >
:
:
Ken Schaefer Guest



Reply With Quote

