Home > Archive > Microsoft SQL Server forum > November 2005 > Recordset









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author Recordset
Eugene Anthony

2005-11-19, 3:23 am

This asp code displayes records in a combo box:


<%
openDB()

call updateDB("usp_retrieveOptions",rs)

if not rs.eof then

%>
<tr>
<td width="66">Options</td>
<td width="137">
<select name="select1" class="TextField1">
<%
i = 0

do while not rs.eof

if rs(0) <> Arr(i) then
response.write "<option value=" & rs(0) & ">" & rs(1)
i = i + 1
end if

rs.movenext

loop
%>
</select>
</td>
</tr>
<tr>
<td colspan="2" width="206">
<center>
<table width="71" border="0" cellspacing="3" cellpadding="0"
height="33">
<tr>
<td width="9" height="30">
<input type="submit" name="Assign" value="Assign"></td>
</tr>
</table>
</center>
</td>
</tr>
<%
end if

closeRS()
closeDB()
%>



The call updateDB("usp_retrieveOptions",rs) invokes

sub updateDB(SQL,rs)

set rs = objConn.Execute(SQL)

end sub


and my usp_retrieveOptions stored procedure:

create procedure usp_retrieveOptions
AS SET NOCOUNT ON

SELECT OptionID, Description FROM Options

Return
GO


now in my asp code when I try response.write rs.RecordCount I am getting
-1 all the time. How do I solve the problem. Your help is kindly
appreciated.



Eugene Anthony

*** Sent via Developersdex http://www.droptable.com ***
Razvan Socol

2005-11-19, 3:23 am

Hi, Eugene

For some answers to your question, see:
http://www.aspfaq.com/show.asp?id=2193

Also, you can try to specify different options for CursorType (e.g.
adOpenStatic=3) or CursorLocation (e.g. adUseClient=3).
For more informations, see:
http://msdn.microsoft.com/library/e...dmthrstopen.asp
http://msdn.microsoft.com/library/e...sortypeenum.asp
http://msdn.microsoft.com/library/e...e
num.asp

http://msdn.microsoft.com/library/e...recordcount.asp

Razvan

Eugene Anthony

2005-11-19, 3:23 am

I did this:


Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open "Exec usp_retrieveOptions",objConn,1,1
response.write rs.RecordCount

and im still getting -1


Eugene Anthony

*** Sent via Developersdex http://www.droptable.com ***
Trevor Best

2005-11-19, 7:23 am

Eugene Anthony wrote:
> I did this:
>
>
> Set rs = Server.CreateObject("ADODB.Recordset")
> rs.Open "Exec usp_retrieveOptions",objConn,1,1
> response.write rs.RecordCount
>
> and im still getting -1
>
>
> Eugene Anthony
>
> *** Sent via Developersdex http://www.droptable.com ***


http://msdn.microsoft.com/library/d...recordcount.asp
Erland Sommarskog

2005-11-20, 8:23 pm

Eugene Anthony (solomon_13000@yahoo
.com) writes:
> I did this:
>
>
> Set rs = Server.CreateObject("ADODB.Recordset")
> rs.Open "Exec usp_retrieveOptions",objConn,1,1
> response.write rs.RecordCount
>
> and im still getting -1


Do you set the cursor location anywhere? The .CursorLocation is a
property on the connection object. Set it to adUseClient.


--
Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se

Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pr...oads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodin...ions/books.mspx
Sponsored Links





Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive | Programming forum archive

Copyright 2008 droptable.com