Muthu vj

Muthu vj

  • 1.5k
  • 157
  • 8k

how to get string value from store procedure

Jun 7 2021 4:26 AM

hi ,

in storeprocedure i am select "S" value i need to fetch this record by using c#..i tried but unable to get it can you help me on this

IF @shortlisted_flg = 'S'
              BEGIN

                   SELECT 'S'
              END

 DataTable dt = new DataTable();
dt = SQL_Helper.ExecuteSelect("usp_update_creative_ideas", dbparamsUserInfo, SQL_Helper.ExecutionType.Procedure);
if (dt != null && dt.Rows.Count > 0)
{
    result = string.Empty;


can you help me on this


Answers (1)