如何使用vb.net通过lan连接连接mysql

时间:2015-07-13 07:21:12

标签: mysql vb.net

我想访问来自另一台计算机的mysql数据库。我试图搜索但无法找到解决我问题的解决方案。希望您能够帮助我。

这是错误:

  

无法连接到数据库:验证主机' 127.0.0.1'对于用户' root'   使用方法' mysql_native_password'消息失败:未知数据库。

这是代码。

$scope.login = function () {
    $scope.loading = true;
    var payload = {'credentials': $scope.logindata};
    REST.load('access', 'login', payload)
        .then(function(data) {
          if(data.redirect)
             $state.go(data.redirect);
          $scope.loading = false;
        })
        .catch(function(error) {
          $scope.loading = false;
        });
}

0 个答案:

没有答案