vote up -4 vote down star

I have, in a table, in a database, a column defined as a 40 byte(varchar)

But when I enter 40 byte chars in a textbox, I can't update the data in that column!

The update works for, say, "ajhjjsdhal" (10 characters)...

...but fails for "adjhksdakhddhalshjhadhajhahda" (29 characters)!

flag
1  
Can you specify more? – Nathan Campos Oct 16 at 1:11
What on earth are you asking? – SLaks Oct 16 at 1:12
I think it's an encoding issue - but poorly worded – Reed Copsey Oct 16 at 1:14
@Reed Copsey: Makes sense. – SLaks Oct 16 at 1:19

closed as not a real question by Dana, Adam Robinson, David Basarab, Ngu Soon Hui, marc_s Oct 16 at 7:45

3 Answers

vote up 0 vote down

Just to add to what Reed and James have mentioned, if you're saving text into an nvarchar using a direct SQL statement (as opposed to say using parameters) then you need to add an N prefix in front of the text you're trying to save. Otherwise your Unicode value ends up garbled. Example below

UPDATE some_table SET some_stuff = N'Do not garble this'

The other thing I can think of is that you might not be escaping single quotes '. You need to escape those with 2 single quotes ''. Again only if you're using a direct SQL statement. And even that should throw an exception.

link|flag
vote up 4 vote down

Can you either change your encoding, as I am guessing that you need to use unicode for writing to the database.

The better option would be to use nvarchar(40) instead of varchar, as that would then use 2 bytes for each character, as it uses unicode.

link|flag
vote up 10 vote down

Make sure you're trying to do your update with the correct character encoding.

By default, .NET uses Unicode, so 40 characters is 80 bytes in length. If you encode this into a byte array using ASCII encoding, you will probably get the behavior you are expecting.

As an example:

byte[] data = Encoding.ASCII.GetBytes(myString);

// save data, instead of myString directly
link|flag
+1 for interpretation :) – Russell Oct 16 at 1:18
:) It's a guess, but from their text, it's my best guess... – Reed Copsey Oct 16 at 1:20
Very nice answer! ;-) – Nathan Campos Oct 16 at 1:28

Not the answer you're looking for? Browse other questions tagged or ask your own question.