Advertisement

07.15.2008 at 03:51PM PDT, ID: 23567940
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.6

Passing parameter of SQL type bit to SQL Server 2000 Stored Procedure from ASP.Net/C#

Asked by mccarIT in .Net Editors & IDEs, MS SQL Server, Microsoft Visual C#.Net

Tags:

I am having problems with the attached code snippet.  I have a stored procedure in SQL Server 2000 that takes two optional parameters, @include_parents and @supress_children, both of type bit.  When trying to call this procedure without parameters it works fine.  Once I try to call it using the parameters I get the following error:

Server Error in '/Net_2' Application.
--------------------------------------------------------------------------------
Line 1: Incorrect syntax near 'mdcSp_get_divisions'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.SqlClient.SqlException: Line 1: Incorrect syntax near 'mdcSp_get_divisions'.

Source Error:
Line 48:             cmd.Parameters.Add("@supress_children", SqlDbType.Bit).Value = false;
Line 49:
Line 50:             rd = cmd.ExecuteReader();
Line 51:
Line 52:             while (rd.Read())
 
( Line 50 is highlighted red. )
I'm guessing it has something to do with how I am passing the value for the bit datatype, which I have not done before.  I have tried passing true/false, 0/1, "0"/"1" and none of those work.  I would appreciate any help on this problem.  Thanks.
 
Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
string qry = "mdcSp_get_divisions";
 
con.Open();
 
cmd = new SqlCommand(qry, con);
cmd.Parameters.Add("@include_parents", SqlDbType.Bit ).Value = true;
cmd.Parameters.Add("@supress_children", SqlDbType.Bit).Value = false;
 
rd = cmd.ExecuteReader();
 
while (rd.Read())
{
     if (sbDivisions.Length > 0)
          sbDivisions.Append(",");
 
     sbDivisions.Append("[" + rd["title"].ToString() + "]");
}
 
rd.Close();
con.Close();
 
 
[+][-]07.15.2008 at 03:57PM PDT, ID: 22011875

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.15.2008 at 04:01PM PDT, ID: 22011906

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.15.2008 at 04:03PM PDT, ID: 22011917

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.15.2008 at 05:57PM PDT, ID: 22012477

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: .Net Editors & IDEs, MS SQL Server, Microsoft Visual C#.Net
Tags: C#, SQL Server 2000
Sign Up Now!
Solution Provided By: FernandoSoto
Participating Experts: 2
Solution Grade: A
 
 
[+][-]07.16.2008 at 07:02AM PDT, ID: 22015991

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628