Unicode in SQL SERVER

    What is Unicode character string :   

       In sql server , unicode character string starts with "N"  i.e nvarchar,nchar etc

       Main purpose to use it... it acceptss universal character string and "N" stands for NATIONAL   LANGUAGE.

        When we are executing query in sql sevrer with parameters , sql server displays list of values preceded with N 'Hello'  etc      

        @p_id = 6,
        @p_desc = N'sas',
        @p_msg = @p_msg OUTPUT


          More details

Comments

Popular posts from this blog

Add Serial no in crystal report without coding

Working with Oracle's BLOB and Microsoft's C#

File operations in C# (.net)