0

我有一个使用 PHP 和 MySQL 数据库的网站,可以托管。我想通过使用 VB.net 的 windows 应用程序将数据上传到网站,但我无法连接到数据库。我尝试使用此代码连接到 Mysql 数据库:

    Dim conn As MySqlConnection
    conn = New MySqlConnection()
    conn.ConnectionString = "Host=www.mydomain.com; user=test; password=****; database=test;pooling=false"
    Try
        conn.Open()
    Catch myerror As MySqlException
        MsgBox("Error connecting to database! " & myerror.Message)
    End Try

这是消息错误:

“连接到数据库时出错!用户'test'@114.134.189.135'的访问被拒绝(使用密码:YES)”。

请帮我解决它。

4

1 回答 1

1
1.Verify that MySQL service is running on your target machine
2. Ensure that user 'test' having the password 'YES'<br>
2.1 Please login any MySQl UI (Eg.,SQLYog)with your username and password for confirmation
3. If not, create a new user
   CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
于 2013-09-13T17:42:11.000 回答