[
Advertise | Submit Code | About us | Contact us | Link us
]
Go!
Membership Services
Login
Register

Home
C# General

General

C# Language

Design & Architecture

Algorithms

Database

Security

Active Directory

COM Interop

Remoting
C# Windows Forms

General

Combo and List boxes

Miscellaneous Controls

Button Controls

Edit Controls
Cutting Edge

ASP.NET 2.0

Visual Studio 2005

Windows Longhorn

SQL Server 2005
C# Multimedia and GDI+

General

DirectX

GDI+

Audio
Internet & Web

General

Images and multimedia

Database

Utilities

Security

ASP.NET Controls

Design and Architecture

Webservices
.NET

General

Design & Architecture

Algorithms

Database

Security

Active Directory

COM Interop

Remoting

ADO.NET

XML.NET

Tools

Enterprise

IDE
Visual Basic .NET

VB.NET General

VB.NET Controls
General Reading

.NET Books Review

Product Showcase

Book Chapters

Business Design & Strategy
Community

Discuss

Job Board

Discussion

CodeXchange
DeveloperLand

Advertise

Submit Code

About us

Contact us

Link us
Miscellaneous

Favorite Links

Downloads

Programming Sites

Top Stories
Regular Expressions

E-Mail

Date/Time
Home > C# General > Database
ExecuteScalar / GetObject in C#
Posted by on Sunday, August 22, 2004 (EST)

This is a function that I have used in almost every application. ExecuteScalar is fast and for returning a single value, almost unbeatable.

This article has been viewed: 13,626 times
Technology: Database.

This is a function that I have used in almost every application. ExecuteScalar is fast and for returning a single value, almost unbeatable. The function is extremely simple. Pass your SQL command string and your connection string and it returns an object, a single value. What kind of value? About anything you like that represents a valid SQL field. Lets take a look at the actual function...

public static object GetObject(string connStr, string sqlCmd) 
{
    object obj = null; // Return Value 
    SqlConnection m_SqlCn = new SqlConnection(connStr); 
    SqlCommand m_SqlCommand = new SqlCommand(sqlCmd,m_SqlCn);
    try 
    {    m_SqlCommand.Connection.Open();
        obj = m_SqlCommand.ExecuteScalar();
    } // end try
    catch (Exception e)
    {   string Er = "Error in GetObject()-> " + e.ToString();
        throw new Exception(Er); 
    } 
    finally 
    {    m_SqlCommand.Dispose();
        m_SqlConnection.Close();
    }
    return obj; 
} 

Now that we have the function, what's it good for. I have a site on which I have a list of over 900 forms and 30 software downloads. The name, description, etc. is listed in a datagrid. The user selects the desired item and we either load it into Acrobat or start the download. But before we do, we link through a common page and advance a counter based on the database Id. Then using the Id, we grab the filename using the get object function. Looks something like...

if (Request.Params["W"]!=null) 
{
  Id=Convert.ToInt32(Request.Params["W"]); 
  sQry="UPDATE Forms SET DloadCount=DloadCount+1 WHERE Id='{0}'"; 
  if(CDb.SqlOperation(string.Format(sQry,Id), CDb.DsnWebDB)==true)
  {
    sQry="Select FormName from Forms WHERE Id='{0}'"; 
    obj= CDb.GetObject(string.Format(sQry,Id),CDb.DsnWebDB);
    if (!Convert.IsDBNull(obj))
     {
       wPath = @"http://Forms.yyyz.Net/" + Convert.ToString(obj);
       Response.Redirect(wPath); 
     }
  }
} 

Steps:
1) We start by grabbing the Id of the form from Params
2) SQry is the SQL Command string to update our counter
3) Update the Counter - SqlOperation can be found in our other articles 
4) SQry now becomes the  string to get our FormName (filename.pdf)
5) Execute GetObject and return the 'obj' variable
6) Make sure that the returned object isn't null and do the link

We also use this function to count records (return value is cast to an int)  and total column values (return value cast to a double) - it all depends on the SQL string that you send and the value that you expect (and convert to) when returned.

Top Go to Table of Contents

About DeveloperLand Administrator

Click here if you want to know more about .

Other articles that may interest you

  • Write a Word Add-In – Part 0
  • Write a Word Add-In – Part I
  • Lengthy Operations on Single Thread in .NET Application
  • Learning Draughts
  • Exceptions and Performance
  • Average Rating :

    Discussion Forums
    Got a programming related question? Hopefully someone has the answer... Want to help out other developers? Visit our discussion forums.

    Sponsored by:

    New Articles

  • Exceptions and Performance
    Almost every time exceptions are mentioned in mailing lists and newsgroups, people say they're really expensive.Let's examine that claim, shall we?

  • Creating multilingual websites - Part 1
    Extend the existing globalization capabilities of .NET to create flexible and powerful multilingual web sites. First, create a custom ResourceManager, and then create custom localized-capable server controls to easily deploy multilingual functionality.

  • Parameter passing in C#
    Many people have become fairly confused about how parameters are passed in C#, particularly with regard to reference types. This page should help to clear up some of that confusion

  • Most Popular Articles

  • LDAP, IIS and WinNT Directory Services
    This article explains how to use .NET Directory Services to retrieve and search directory objects, create new directory objects and edit or delete existing directory objects. Describes Active Directory Application Mode (ADAM) and how to use the IIS, WinNT and LDAP directory (ADSI) provider.

  • An in-depth look at WMI and instrumentation, Part II
    WMI stands for Windows Management Instrumentation and, as the name indicates, is about managing your IT infrastructure this article is the second part of a two-part series.

  • An in-depth look at WMI and instrumentation, Part I
    WMI stands for Windows Management Instrumentation and, as the name indicates, is about managing your IT infrastructure this article provides an in-depth look at WMI and MOM 2005

  • New Books

  • Murach's ASP.NET 2.0 Upgrader's Guide: VB Edition
    What’s new and how to use it! That’s what this book delivers if you’re a VB developer who’s interested in upgrading from ASP.NET 1.x to ASP.NET 2.0.

  • C# in easy steps
    Learn to program with Microsoft’s premier programming language. No previous programming knowledge is assumed. With numerous easy-to-follow examples, this title explains the essentials of object-oriented programming with C#.

  • Murach's ASP.NET web programming with VB.NET
    Murach's ASP.NET web programming with VB.NET by Doug Lowe and Anne Prince is a in depth training and reference book for ASP.NET programming using VB.NET. The book builds upon Murach's previous books and covers more advanced concepts for programming ASP.NET pages.

  • Got Code?

    if you have any article , source code , or anything else you'd like to share with this community that you think others might find useful, please submit it here and we will gladly make it available on this site. submit@developerland.com.
    Partners

    All articles are copyrighted by their individual authors unless otherwise specified , everything else Copyright ©2004-2006 DeveloperLand