作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我尝试在 mySql 上插入希伯来语时,一切顺利,但是当我尝试从 winForm 输入插入希伯来语数据时,我得到“???”
我使用 winForm 与 2019 和 mySql
{
string query = "INSERT INTO customers (`name`, `adress`, `phone_number`, `cellular`, `Ownership_information`, `Identity`, `email`) VALUES ('" + tbName.Text + "','" + tbAdress.Text + "','" + tbTel.Text + "','" + tbPhone.Text + "','" + tbBalut.Text + "','" + tbPasport.Text + "','" + tbEmail.Text + "')";
MySqlConnection databaseConnection = new MySqlConnection(connectionString);
MySqlCommand commandDatabase = new MySqlCommand(query, databaseConnection);
commandDatabase.CommandTimeout = 60;
try
{
databaseConnection.Open();
MySqlDataReader myReader = commandDatabase.ExecuteReader();
MessageBox.Show("User succesfully registered");
databaseConnection.Close();
}
catch (Exception ex)
{
// Show any error message.
MessageBox.Show(ex.Message);
}
}
最佳答案
我添加了Charset=utf8;到我的连接字符串现在效果很好
关于mysql - 如何从winForm输入希伯来语到mySql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57055238/
我是一名优秀的程序员,十分优秀!