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 6728753
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:12:28+00:00 2026-05-26T10:12:28+00:00

I have a SQL stored procedure that is searching data in my table according

  • 0

I have a SQL stored procedure that is searching data in my table according to send data.
But when I use it I can’t get any result.
This is my C# code hat is using the stored procedure:

List<Common.CommonPersonSerchResult> SerchResult = new List<Common.CommonPersonSerchResult>();

    public DLAdvancedSearch(Common.CommonPersonAdvancedSearch data)
    {
        //Creating Connection Started...
        SqlConnection connection = new SqlConnection("Data Source=(local);Initial Catalog=Khane;Integrated Security=True");
        //Creating Connection Finished.
        //Creating Command To Run started...
        SqlCommand command = new SqlCommand();
        command.Connection = connection;
        //Creating Command To Run Finished.
        //Setting Command Text...
        command.CommandType = CommandType.StoredProcedure;
        command.CommandText = "AdvancedSearch";
        //Setting Command Text Finished.

        //Making And Setting SQL AdvancedSearch Parametters...
        SqlParameter FirstName = new SqlParameter("FirstName", SqlDbType.NVarChar, 50);
        FirstName.Value = data.FirstName;
        command.Parameters.Add(FirstName);

        SqlParameter LastName = new SqlParameter("LastName", SqlDbType.NVarChar, 50);
        LastName.Value = data.LastName;
        command.Parameters.Add(LastName);

        SqlParameter FatherName = new SqlParameter("FatherName", SqlDbType.NVarChar, 50);
        FatherName.Value = data.FatherName;
        command.Parameters.Add(FatherName);

        SqlParameter NationalCode = new SqlParameter("NationalCode", SqlDbType.Int);
        NationalCode.Value = data.NationalCode;
        command.Parameters.Add(NationalCode);

        SqlParameter ShenasnameCode = new SqlParameter("ShenasnameCode", SqlDbType.Int);
        ShenasnameCode.Value = data.ShenasnameCode;
        command.Parameters.Add(ShenasnameCode);

        SqlParameter State = new SqlParameter("State", SqlDbType.NVarChar, 50);
        State.Value = data.State;
        command.Parameters.Add(State);

        SqlParameter City = new SqlParameter("City", SqlDbType.NVarChar, 50);
        City.Value = data.City;
        command.Parameters.Add(City);

        SqlParameter Address = new SqlParameter("Address", SqlDbType.NVarChar, 50);
        Address.Value = data.Address;
        command.Parameters.Add(Address);

        SqlParameter PostalCode = new SqlParameter("PostalCode", SqlDbType.Int);
        PostalCode.Value = data.PostalCode;
        command.Parameters.Add(PostalCode);

        SqlParameter SportType = new SqlParameter("SportType", SqlDbType.NVarChar, 50);
        SportType.Value = data.SportType;
        command.Parameters.Add(SportType);

        SqlParameter SportStyle = new SqlParameter("SportStyle", SqlDbType.NVarChar, 50);
        SportStyle.Value = data.SportStyle;
        command.Parameters.Add(SportStyle);

        SqlParameter RegisterType = new SqlParameter("RegisterType", SqlDbType.NVarChar, 50);
        RegisterType.Value = data.RegisterType;
        command.Parameters.Add(RegisterType);

        SqlParameter Gahremani = new SqlParameter("Gahremani", SqlDbType.NVarChar, 50);
        Gahremani.Value = data.Ghahremani;
        command.Parameters.Add(Gahremani);

        //Making And Setting SQL AdvancedSearch Parametters Finished.

        //Reading Data And Save in SearchResult List...
        connection.Open();

        SqlDataReader reader = command.ExecuteReader();

        while (reader.Read())
        {
            Common.CommonPersonSerchResult res = new Common.CommonPersonSerchResult();

            res.ID = (int)reader.GetValue(0);
            res.FirstName = reader.GetValue(1).ToString();
            res.LastName = reader.GetValue(2).ToString();
            res.FatherName = reader.GetValue(3).ToString();
            res.NationalCode = (int)reader.GetValue(4);
            res.ShenasnameCode = (int)reader.GetValue(5);
            res.BirthDate = reader.GetValue(6).ToString();
            res.State = reader.GetValue(7).ToString();
            res.City = reader.GetValue(8).ToString();
            res.PostalCode = (int)reader.GetValue(10);
            res.SportType = reader.GetValue(11).ToString();
            res.SportStyle = reader.GetValue(12).ToString();
            res.RegisterType = reader.GetValue(13).ToString();
            res.Ghahremani = reader.GetValue(14).ToString();

            SerchResult.Add(res);

        }

        connection.Close();
        //Reading Data And Save in SearchResult List Finished.


    }

And this is my stored procedure:

USE [Khane]
GO
/****** Object:  StoredProcedure [dbo].[AdvancedSearch]    Script Date: 10/28/2011 01:02:26 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:      <Author,,Name>
-- Create date: <Create Date,,>
-- Description: <Description,,>
-- =============================================
ALTER PROCEDURE [dbo].[AdvancedSearch] 
@FirstName nvarchar(50) = null,
@LastName nvarchar(50) = null,
@FatherName nvarchar(50) = null,
@NationalCode int = null,
@ShenasnameCode int = null,
@State nvarchar(50) =null,
@City nvarchar(30) =null,
@Address nvarchar(250)=null,
@PostalCode int=null,
@SportType nvarchar(50)=null,
@SportStyle nvarchar(50)=null,
@RegisterType nvarchar(50)=null,
@Gahremani nvarchar(50)=null
AS
BEGIN
if @FirstName<>null
begin
select * from PersonsDataTbl where Name like '%'+@FirstName+'%'
end

if @LastName<>null
begin
select * from PersonsDataTbl where LastName like '%'+@LastName+'%'
end

if @FatherName<>null
begin
select * from PersonsDataTbl where FatherName like '%'+@FatherName+'%'
end

if @NationalCode<>null
begin
select * from PersonsDataTbl where NationalCode like '%'+@NationalCode+'%'
end

if @ShenasnameCode<>null
begin
select * from PersonsDataTbl where ShenasnameCode like '%'+@ShenasnameCode+'%'
end

if @State<>null
begin
select * from PersonsDataTbl where State like '%'+@State+'%'
end

if @City<>null
begin
select * from PersonsDataTbl where City like '%'+@City+'%'
end

if @Address<>null
begin
select * from PersonsDataTbl where Address like '%'+@Address+'%'
end

if @PostalCode<>null
begin
select * from PersonsDataTbl where PostalCode like '%'+@PostalCode+'%'
end

if @SportType<>null
begin
select * from PersonsDataTbl where SportType like '%'+@SportType+'%'
end

if @SportStyle<>null
begin
select * from PersonsDataTbl where SportStyle like '%'+@SportStyle+'%'
end

if @RegisterType<>null
begin
select * from PersonsDataTbl where RegisterType like '%'+@RegisterType+'%'
end

if @Gahremani<>null
begin
select * from PersonsDataTbl where Ghahremani like '%'+@Gahremani+'%'
end

END

What do I have to do?

  • 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-26T10:12:29+00:00Added an answer on May 26, 2026 at 10:12 am

    Instead of = and <> you should use IS and IS NOT to compare to NULL:

    if @FirstName IS NOT NULL
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a SQL Server 2008 stored procedure that updates values in a table.
I have a stored procedure that executes much faster from Sql Server Management Studio
I have a stored procedure that runs custom backups for around 60 SQL servers
We have the following simple Stored Procedure that runs as an overnight SQL server
I have a complex sql query that I have in a stored procedure and
I have a very long-running stored procedure in SQL Server 2005 that I'm trying
Let's say I have a stored procedure in Microsoft SQL Server 2005 that returns
I have a SQL Server Stored Procedure that looks like this: CREATE PROCEDURE [dbo].[my_stored_procedure]
I have a SQL Server 2008 database. This database has a stored procedure that
My limited SQL knowledge prompted this post! I have a stored procedure that runs

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.