简体   繁体   中英

How to save CZEC language data into sql server 2008 R2

I have below line of CZEC language.

"V současné době se zabýváme bilancí našich účtů ".

but when I insert this in database it's get converted automatic to "V soucasné dobe se zabýváme bilancí našich úctu ."

so if you observed bold text is converted. I need to save the line as it is in database.

Table details: Column type: varchar(max)

@ Damien_The_Unbeliever Thanks : Below is the answer

declare @t nvarchar(max)
set @t = 'V současné době se zabýváme bilancí našich účtů'
select @t
set @t = N'V současné době se zabýváme bilancí našich účtů'
select @t

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM