Groups | Blog | Home
all groups > sql server (alternate) > november 2005 >

sql server (alternate) : Recordset


Eugene Anthony
11/19/2005 12:00:00 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

Razvan Socol
11/19/2005 12:08:21 AM
Eugene Anthony
11/19/2005 8:28:09 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

Trevor Best
11/19/2005 11:52:46 AM
[quoted text, click to view]

Erland Sommarskog
11/20/2005 12:00:00 AM
Eugene Anthony (solomon_13000@yahoo.com) writes:
[quoted text, click to view]

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/prodtechnol/sql/2005/downloads/books.mspx
Books Online for SQL Server 2000 at
AddThis Social Bookmark Button