Re: Chinese Charset is displayed as '????'
i too facing the same problem..
i am trying to insert korean data into data through vb.net using following code
con = New OdbcConnection("DRIVER={MySQL ODBC 3.51 Driver};" _
& "SERVER=localhost;" _
& "DATABASE=abc;" _
& "UID=root;" _
& "PASSWORD=abcd;" _
& "CHARSET=euckr;" _
& "OPTION=3;PORT=3308")
con.Open()
cmd.Connection = con
cmd.CommandText = "insert into keyword (keyword) values (convert('" & TextBox.Text & "' using euckr))"
cmd.ExecuteNonQuery()
cmd.CommandText = "select * from keyword "
reader = cmd.ExecuteReader
While reader.Read
MsgBox(reader("keyword").ToString)
End While
still i am getting the "??????" in msgbox
Can anyone help?
Cheers .... :)
Neeraj Black Bits
Subject
Views
Written By
Posted
11849
March 02, 2005 04:41AM
7936
March 02, 2005 08:02AM
6155
March 02, 2005 07:54PM
6184
March 03, 2005 02:23AM
8772
March 05, 2005 03:54AM
5571
March 16, 2005 03:56AM
4848
April 05, 2005 03:13AM
6388
April 06, 2005 09:10AM
4283
October 24, 2005 10:47PM
4037
November 03, 2005 01:55AM
3870
April 21, 2005 07:45AM
7546
June 28, 2005 10:44PM
3923
November 03, 2005 03:01AM
3606
December 01, 2005 09:34PM
3682
December 08, 2005 03:06AM
3393
July 13, 2005 03:18AM
3649
August 15, 2005 01:58PM
19763
January 18, 2007 09:47PM
5373
October 24, 2005 11:41PM
3759
October 25, 2005 02:07AM
3499
November 04, 2005 09:40AM
3447
March 22, 2006 04:03AM
3543
April 05, 2006 10:01AM
Re: Chinese Charset is displayed as '????'
4471
May 25, 2006 01:33PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.