Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old December 15th, 2005, 04:55 AM
middletree
Guest
 
Posts: n/a
Default buffer limit

Here's the error I am getting:
Response object error 'ASP 0251 : 80004005'
Response Buffer Limit Exceeded
Execution of the ASP page caused the Response Buffer to exceed its
configured limit

I then went to aspfaq.com, which told me to add the Response.Clear(), which
you'll see below. Since adding this, I get a timeout.


First, the connection:
strConnection ="Provider=Microsoft.Jet.OLEDB.4.0;Data
Source="&server.mappath(".\**.mdb")&";User Id=***;Password=***;"
filePath = Server.MapPath("***.mdb")

Next, the code, which queries one table in an Access database, and pulls a
city, state, name, and phone number, all of which are of type Memo:


<% Set objConnection = Server.CreateObject("ADODB.Connection")
objConnection.ConnectionString = strConnection
objConnection.Open

strSQL = "select State, City, BranchID, Phone, BranchName from CMMain "
Set RS = Server.CreateObject("ADODB.Recordset")
RS.Open strSQL, objConnection,1,1
Do While not rs.EOF
strState = rs("State")
strCity = rs("City")
strBranchID = rs("BranchID")
strPhone = rs("Phone")
strBranchName = rs("BranchName")
%>
<tr>
<td>
<%=strBranchName%>
</td>
<td>
<%=strCity%>
</td>
<td>
<%=strState%>
</td>
<td>
<%=strPhone%>
</td>
</tr>
<%
Response.Clear()
Loop
set rs = nothing
set ObjConnection = nothing
%>


  #2  
Old December 15th, 2005, 05:15 AM
middletree
Guest
 
Posts: n/a
Default Re: buffer limit

Well, I changed:
[color=blue]
> Set RS = Server.CreateObject("ADODB.Recordset")[/color]

to

set RS = objConnection.execute (strSQL)


and it works now. I mean, I get a different error, but I will work on that.

Weird. I thought if I was pulling up a set of data, it has to be a
recordset.



  #3  
Old December 15th, 2005, 11:35 AM
Danny@Kendal
Guest
 
Posts: n/a
Default Re: buffer limit

"middletree" <middletree@HTOmail.com> wrote in message
news:O40ahGTAGHA.356@TK2MSFTNGP12.phx.gbl...[color=blue]
> Here's the error I am getting:
> Response object error 'ASP 0251 : 80004005'
> Response Buffer Limit Exceeded
> Execution of the ASP page caused the Response Buffer to exceed its
> configured limit
>
> I then went to aspfaq.com, which told me to add the Response.Clear(),
> which you'll see below. Since adding this, I get a timeout.[/color]

I'm no expert but I hope the following might help.

I have a What's On page which uses the response buffer to hopefully speed
things up. The layout I use is something like this:

response.buffer=true
[open database]
[perform database query]
[response.write the values]
[close database connection]
response.flush


 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles