Click here to Skip to main content
15,915,763 members
Home / Discussions / C#
   

C#

 
GeneralRe: Address Pin
EliottA12-Jan-09 12:28
EliottA12-Jan-09 12:28 
Questionincreasing panel size Pin
jananiSreedhar12-Jan-09 6:11
jananiSreedhar12-Jan-09 6:11 
AnswerRe: increasing panel size Pin
User 665812-Jan-09 6:18
User 665812-Jan-09 6:18 
AnswerRe: increasing panel size Pin
EliottA12-Jan-09 6:23
EliottA12-Jan-09 6:23 
QuestionString in UTF-8 format was inserted to DB Pin
Miro7712-Jan-09 5:44
Miro7712-Jan-09 5:44 
AnswerRe: String in UTF-8 format was inserted to DB Pin
Ben Fair12-Jan-09 8:06
Ben Fair12-Jan-09 8:06 
GeneralRe: String in UTF-8 format was inserted to DB Pin
Miro7712-Jan-09 20:23
Miro7712-Jan-09 20:23 
AnswerRe: String in UTF-8 format was inserted to DB Pin
Guffa12-Jan-09 13:34
Guffa12-Jan-09 13:34 
A string is neither in UTF-8 or UTF-16, a string is just a string. When you encode a string as UTF-8 or UTF-16 you get a byte array. The memory representation for a string happens to be the same as UTF-16, but a string is not the same thing as a byte array.

If you want to store the string encoded as UTF-8 in the database you can't store it in a text field, you would have to use an image field.

I don't think that you really want to store the string as UTF-8, I think that you want to store it as unicode text, i.e. an nvarchar or ntext field.

Despite everything, the person most likely to be fooling you next is yourself.

QuestionHow to create a class that can be used like a DataTable? Pin
Michael Sync12-Jan-09 4:57
Michael Sync12-Jan-09 4:57 
AnswerRe: How to create a class that can be used like a DataTable? Pin
Moim Hossain12-Jan-09 4:59
Moim Hossain12-Jan-09 4:59 
GeneralRe: How to create a class that can be used like a DataTable? Pin
Michael Sync12-Jan-09 5:03
Michael Sync12-Jan-09 5:03 
GeneralRe: How to create a class that can be used like a DataTable? Pin
Moim Hossain12-Jan-09 5:11
Moim Hossain12-Jan-09 5:11 
GeneralRe: How to create a class that can be used like a DataTable? Pin
Michael Sync12-Jan-09 5:47
Michael Sync12-Jan-09 5:47 
GeneralRe: How to create a class that can be used like a DataTable? Pin
Not Active12-Jan-09 5:52
mentorNot Active12-Jan-09 5:52 
GeneralRe: How to create a class that can be used like a DataTable? Pin
Michael Sync12-Jan-09 6:03
Michael Sync12-Jan-09 6:03 
GeneralRe: How to create a class that can be used like a DataTable? Pin
Not Active12-Jan-09 8:35
mentorNot Active12-Jan-09 8:35 
Questioncan delegate return multiple values with different datatypes Pin
suni_dotnet12-Jan-09 4:31
suni_dotnet12-Jan-09 4:31 
AnswerRe: can delegate return multiple values with different datatypes Pin
Rutvik Dave12-Jan-09 4:42
professionalRutvik Dave12-Jan-09 4:42 
AnswerRe: can delegate return multiple values with different datatypes Pin
Eddy Vluggen12-Jan-09 4:43
professionalEddy Vluggen12-Jan-09 4:43 
AnswerRe: can delegate return multiple values with different datatypes Pin
Ben Fair12-Jan-09 8:01
Ben Fair12-Jan-09 8:01 
AnswerRe: can delegate return multiple values with different datatypes Pin
Jon Rista13-Jan-09 9:48
Jon Rista13-Jan-09 9:48 
Questioninsert date to the data base Pin
abu rakan12-Jan-09 4:24
abu rakan12-Jan-09 4:24 
AnswerRe: insert date to the data base Pin
SeMartens12-Jan-09 4:29
SeMartens12-Jan-09 4:29 
GeneralRe: insert date to the data base Pin
abu rakan12-Jan-09 10:25
abu rakan12-Jan-09 10:25 
GeneralRe: insert date to the data base Pin
SeMartens12-Jan-09 20:58
SeMartens12-Jan-09 20:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.