stackoverflow社区!我再次来到这里寻求你的帮助。。。
我的问题是:我制作了一个c#应用程序,用于在Byethost(SecureSignup)托管的MySQL数据库中注册帐户。这种连接是有效的,但不是一直有效,即使条件没有改变。一分钟后,我可以提交查询,PhpMyAdmin显示它是在数据库中编写的,但几分钟后,当我尝试完全相同的事情时,我收到各种超时错误,从"无法从传输连接读取数据:连接尝试失败是因为连接方在一段时间后没有正确响应,或者建立的连接失败是因为所连接的主机没有响应。"到"超时IO操作"。。。这是我的代码,也许拥有它可以帮助你理解为什么它有时会有如此奇怪的行为,因为我肯定做不到。
(我已经从cpanel授予了我的IP远程MySQL访问权限,登录数据100%正确)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using MySql.Data.MySqlClient;
namespace Main
{
public partial class Form1 : Form
{
string connString;
MySqlDataReader reader;
MySqlConnection conn;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
connString = "Server=sql.byethost46.org;Port=3306;Database=bleachon_aza;UID=bleachon;password=********";
conn = new MySqlConnection(connString);
MySqlCommand command = conn.CreateCommand();
command.CommandText = "INSERT into users (Username,password) VALUES('" + usr.Text + "','" + pass.Text + "')";
conn.Open();
int timeoutvalue = conn.ConnectionTimeout;
command.ExecuteNonQuery();
MessageBox.Show(timeoutvalue.ToString()); //This was a curiousity, it displays 15
conn.Close();
}
}
}
您应该使用parameters
来防止SQL injection.
还可以使用using
语句来正确处理MySQL
对象。
private void button1_Click(object sender, EventArgs e)
{
connString = "Server=sql.byethost46.org;Port=3306;Database=bleachon_aza;UID=bleachon;password=********";
using (conn = new MySqlConnection(connString))
{
string query = "INSERT INTO users (Username, password) VALUES (@usr, @pass)";
// are you sure your column name is Username and not username ?
conn.Open();
using (MySqlCommand cmd = new MySqlCommand(conn, query))
{
cmd.Parameters.AddWithValue("@usr", usr.Text);
cmd.Parameters.AddWithValue("@pass", pass.Text);
cmd.ExecuteNonQuery();
// No need to close your connection. The using statement will do that for you.
}
}
}
至于连接问题,我认为你应该联系你的主人寻求答案。我一直使用MySql
使用C#
,没有任何问题,所以我认为这是你的主机的问题。