C# Writing Hebrew to a db the text is written left to right e.g. olleh not hello
- by Jonathan Dyle
Hi all,
When writing Hebrew to a database the text is written from left to right, Hebrew is Right to left, my app is writing olleh and not hello (in Hebrew of course).
To read the Hebrew into my app I use System.Text.Encoding.GetEncoding(1255);
My question is what am I missing when writing the text to the db?
Many thanks
Jonathan