Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SELECT statement returning integer value 1

Status
Not open for further replies.

glyn6

Programmer
Nov 2, 2009
561
GB
I'm trying to return the value of a COUNT query as an integer can someone tell me what I'm doing wrong now?

Code:
CREATE PROCEDURE [dbo].[Countit]
AS
BEGIN
	SET NOCOUNT ON;
	SELECT COUNT(CompanyDetailID) as CountOfID
	FROM mainCompanyDetail
	WHERE Deleted = 0

return CountOfID
END


Thanks
 
You can't return FIELD from a query, you can return variable:
Code:
CREATE PROCEDURE [dbo].[Countit]
AS
BEGIN
    SET NOCOUNT ON;
    DECLARE @CountOfID int

    SELECT @CountOfID = COUNT(CompanyDetailID)
    FROM mainCompanyDetail
    WHERE Deleted = 0

return @CountOfID
END

Borislav Borissov
VFP9 SP2, SQL Server 2000/2005.
 
That executes nicely :) But how do I see the values?
"Execute Countit" in query analyser brings back "Command(s) completed successfully."

In the Vb code I'm trying to do this
Code:
Dim oRecordset As IDataReader = db.ExecuteReader(dbCommand)
oRecordset.Read
Dim x As String = Convert.ToString(oRecordset("CountOfID"))
 
You use datareader, it expects RecordSet to be returned.
The SP I wrote didn't return ANY recordset, it just return a count.
So if you want to have RecordSet AND return value you should change it to:
Code:
CREATE PROCEDURE [dbo].[Countit]
AS
BEGIN
    SET NOCOUNT ON;
    DECLARE @CountOfID int

    SELECT @CountOfID = COUNT(CompanyDetailID)
    FROM mainCompanyDetail
    WHERE Deleted = 0
    SELECT @CountOfID AS CountOfID

return @CountOfID
END

Borislav Borissov
VFP9 SP2, SQL Server 2000/2005.
 
Perfect thanks?
What code should I use if I just want to return the count and not a recordset?
 
The first one :)
But it depends HOW you get the value from your frontend.

Borislav Borissov
VFP9 SP2, SQL Server 2000/2005.
 
Sorry, I should have said "what code should I use in VB.Net to return the count? " DOH
 
That's a question for VB.NET forum :)
I'm not a .NET person.

Borislav Borissov
VFP9 SP2, SQL Server 2000/2005.
 
I think I would just have kept using the DataReader and made this minor modification to your stored procedure:
Code:
CREATE PROCEDURE [dbo].[Countit]
AS
BEGIN
    SET NOCOUNT ON;
    SELECT COUNT(CompanyDetailID) as CountOfID
    FROM mainCompanyDetail
    WHERE Deleted = 0
END

I don't see the point of storing the query result in a variable first. It's also less code in both the stored procedure and in .NET. Also, it's a convention that the return value should always indicate what error may have occurred (where zero indicates no error).
 
I disagree. In our case we're returning a single int value, so the simplest way to get it back would be to use either ExecuteNonQuery and get it through output parameter or ExecuteScalar and get it through return value.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top