Results 1 to 3 of 3

Thread: [RESOLVED] How to use/set Multilanguage in the SQL Server 2005?

  1. #1

    Thread Starter
    Hyperactive Member vincentg's Avatar
    Join Date
    Jun 2005
    Location
    Chicago IL, USA
    Posts
    261

    Resolved [RESOLVED] How to use/set Multilanguage in the SQL Server 2005?

    Hi guys,

    how to insert a chinese character in the table?

    I insert it but it shows ?????

    please advice. Thanks in advance.

  2. #2
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,974

    Re: How to use/set Multilanguage in the SQL Server 2005?

    Are you inserting the data into a field with a data type that starts with N (such as NVarChar)? If not, you need to do that.

    Next up, when you insert data, are you using an SQL statement to do that? If so, you need to put N before the quotes (eg: myfield = N'value')


    If that is all OK, how are you looking at the data? Many programs (including database management tools) don't display unicode data, so will show ?? instead of the actual data - but the data will still be there (you just need to view it somewhere that supports unicode).

  3. #3

    Thread Starter
    Hyperactive Member vincentg's Avatar
    Join Date
    Jun 2005
    Location
    Chicago IL, USA
    Posts
    261

    Re: How to use/set Multilanguage in the SQL Server 2005?

    it work now

    Thanks for the info!

    Sorry for the delay replied. Hail si_the_geek!
    - No Signature Yet -

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width