How to retrieve data from a SQL Server stored procedure by using hindi parameter?
I have tried like this:
declare @A nvarchar (max), @b nvarchar(max), @c nvarchar(max)
set @b = N'नईम '
print @b
But used @b
as a parameter then it will work :
declare @A nvarchar (max),@b nvarchar(max),@c nvarchar(max)
set @b = 'नईम '
print @b
then no results found
Pass hindi parameter like in sp :
[Up_searchbyperameter] 35,62,0,'नाम'
kindly give me any solution
In stored procedure, there is one parameter @datavalue
which contain Hindi word, but by using stored procedure, I am unable to retrieve hindi data
Please help...