Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7567819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T14:45:51+00:00 2026-05-30T14:45:51+00:00

In C# SqlCommand – ExecuteScalar is : private object CompleteExecuteScalar(SqlDataReader ds, bool returnSqlValue) now

  • 0

In C# SqlCommand - ExecuteScalar is :

private object CompleteExecuteScalar(SqlDataReader ds, bool returnSqlValue)

now let’s go to SQL Server.

If I want to return a value from the select (which goes to ExecuteScalar), e.g. :

if record already exists select `-1`
else select `0`

Question :

what is the preferred (by best practices) type for returning from SQL Server in order to reduce the amount of casting & tostring() in C#:

if exists(select ....) select '-1'       -- string

or

if exists(select ....) select -1         -- int
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T14:45:52+00:00Added an answer on May 30, 2026 at 2:45 pm

    You are returning number so int is preferable here by meaning.

    Futher more, when parsing error in C# code you will be albe to do somethinng like:

    enum Error { NO_ERROR = -1, ERROR 1 };
    
    ....
    
    Error e = (Error)cmd.ExcecuteScalar();
    

    Which is pretty clean and self explaining code as oposite to parsing result to int, or comparing string values.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

private static SqlParameter AddNewParameterToCommand(SqlCommand command, string name, object value, bool isOutputParameter) { SqlParameter parm
Possible Duplicate: C# Update Table using SqlCommand.Parameters I'm trying to update an SQL Server
I want to use this pattern: SqlCommand com = new SqlCommand(sql, con); com.CommandType =
protected void btnDownload_Click(object sender, EventArgs e) { SqlCommand Command = connection.CreateCommand(); SqlDataReader SQLRD; Command.CommandText
I have a SqlCommand that I want to call Prepare() on whose CommandType =
I'm using an SqlCommand object to insert a record into a table with an
Here is my SQLCommand object: oCommand.CommandText = INSERT INTO hits (id,client_id,client_ip,page,vars) VALUES _ (@@IDENTITY,@client_id,@ip,@page,@vars)
I have a SqlCommand object, and I execute its ExecuteNonQuery method. The query fails,
I'm using SqlClient.SqlCommand object to run a few stored procs on my db. Normally
I have a populated SqlCommand object containing the command text and parameters of various

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.