我正在Windows应用程序(C#)中工作,数据库是MySQL。在应用程序中,我正在获取gmail收件箱,并将其保存到数据库中。但是我的问题是,当我在代码Subject
或message
列中使用插入查询时,在印地语中显示消息,而在数据库中保存时,却显示了这样的字符????????
。我已经在MySQL的UTF-8中更改了所有内容。
当我使用MySQL编辑器插入相同字体时,它将保存为印地语字体。对我来说,这是一种奇怪的情况,因为我是MySQL的新手。
foreach (ImapMessageInfo message in messages)
{
InsertMail(message.UniqueId, message.Sender.ToString(), message.To.ToString(), message.Subject.Trim(), message.Date.LocalTime, client.GetMailMessage(message.SequenceNumber).BodyText);
}
public void InsertMail(string uid, string from, string to, string subject, DateTime datetime, string message)
{
try
{
MySqlCommand cmd = new MySqlCommand();
cmd.Parameters.AddWithValue("@unique_id", uid);
cmd.Parameters.AddWithValue("@sender", from);
cmd.Parameters.AddWithValue("@reciever", to);
cmd.Parameters.AddWithValue("@subject", subject);
cmd.Parameters.AddWithValue("@date", datetime);
cmd.Parameters.AddWithValue("@message", message);
cmd.Parameters.AddWithValue("@mail_status", "unread");
cmd.Connection = con;
string query = "Insert Ignore into gmail_inbox(unique_id,sender,reciever,subject,date,message,mail_status) values (@unique_id,@sender,@reciever,@subject,@date,@message,@mail_status) ";
cmd.CommandText = query;
cmd.ExecuteNonQuery();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
}
}
最佳答案
检查字符集和数据库的排序规则。使用UTF8应该可以正确保存它们并正确显示它们。还要确保在初始化连接时将连接字符集设置为utf8,否则可能会发生其他错误。
基本上,您需要确保列/表和连接字符集为utf8,然后再插入所需的数据即可。
关于c# - 如何在MySQL数据库中保存印地语字符,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15972917/