Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 1.0 and 1.1 > ASP.NET 1.0 and 1.1 Basics
|
ASP.NET 1.0 and 1.1 Basics ASP.NET discussion for users new to coding in ASP.NET 1.0 or 1.1. NOT for the older "classic" ASP 3 or the newer ASP.NET 2.0.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.0 and 1.1 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old December 22nd, 2004, 10:57 AM
Authorized User
 
Join Date: Dec 2004
Posts: 23
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to datagram Send a message via AIM to datagram
Default How to get "SELECT COUNT(*)" return information?

Here is a part of my code...

Me.SqlCommand1.Connection = Me.SqlConnection1
SqlConnection1.Open()
Me.SqlCommand1.CommandText = "SELECT COUNT(*) AS in_process FROM tbl_current_call_list WHERE repname ='" & repname & "' AND in_process='yes'"

What do I use to see just the number of rows its returning? A reader or dataset or something? I just want to be able to see the number of rows, not any of the information.
Thank you

 
Old December 22nd, 2004, 11:26 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 1,110
Thanks: 0
Thanked 3 Times in 3 Posts
Default

You can try this:

    Dim strSQL As String
    Dim strCOUNT As String
    Dim objCommand As New OleDbCommand

    objCommand.Connection = objConn
    strSQL = "SELECT COUNT(*) AS in_process FROM tbl_current_call_list WHERE repname ='" & repname & "' AND in_process='yes'"
    objCommand.CommandText = strSQL
    objCommand.CommandType = CommandType.Text

    objConn.Open()
    strCOUNT = CType(objCommand.ExecuteScalar, String)
    objConn.Close()


strCOUNT will hold the value of the COUNT(*)

 
Old December 22nd, 2004, 02:31 PM
Authorized User
 
Join Date: Dec 2004
Posts: 23
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to datagram Send a message via AIM to datagram
Default

Yes, that worked!! Now on another page if I wanted to display the data in the rows, that would be a Dataset right?

 
Old December 23rd, 2004, 01:21 AM
Authorized User
 
Join Date: Sep 2004
Posts: 35
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to nashnash
Default


that can be datareader or dataset depends upon your requirement.
like this

--DataReader------------------
SqlDataReader myReader = CommandName.ExecuteReader(CommandBehavior.Sequenti alAccess);

while (myReader.Read())
{
  Response.write(myReader["Columnanme"].toString());
}
myReader.Close()

---Dataset----
Dataset ds=new Dataset();
SqlDataAdapter cmd1 = new SqlDataAdapter("select * from stock",connection object);
cmd1.Fill(ds,"stock");

now your dataset is filled with records.You can just bind to any controls.

Thanks
Nash






Similar Threads
Thread Thread Starter Forum Replies Last Post
Select COUNT(*) grstad Classic ASP Basics 5 April 28th, 2006 11:01 AM
Count, sum, count a value, return records CongoGrey Access 1 April 18th, 2005 02:25 PM
Return information from cmd to VB HelgeB VB How-To 4 December 1st, 2004 05:34 AM
sql to return distinct count pbgurl Access VBA 2 October 29th, 2004 06:29 AM
return record count by quarter jtyson SQL Server 2000 1 June 29th, 2004 11:24 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.