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
11521
March 02, 2005 04:41AM
7845
March 02, 2005 08:02AM
6063
March 02, 2005 07:54PM
6094
March 03, 2005 02:23AM
8681
March 05, 2005 03:54AM
5500
March 16, 2005 03:56AM
4756
April 05, 2005 03:13AM
6291
April 06, 2005 09:10AM
4186
October 24, 2005 10:47PM
3943
November 03, 2005 01:55AM
3783
April 21, 2005 07:45AM
7458
June 28, 2005 10:44PM
3823
November 03, 2005 03:01AM
3519
December 01, 2005 09:34PM
3607
December 08, 2005 03:06AM
3321
July 13, 2005 03:18AM
3562
August 15, 2005 01:58PM
19492
January 18, 2007 09:47PM
5290
October 24, 2005 11:41PM
3684
October 25, 2005 02:07AM
3395
November 04, 2005 09:40AM
3366
March 22, 2006 04:03AM
3453
April 05, 2006 10:01AM
Re: Chinese Charset is displayed as '????'
4381
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.