我目前正在使用Microsoft Azure编写应用程序。目前,我已经成功地创建了表格,插入它们等等。但是,在选择时遇到了问题。
当我尝试选择时,它给了我错误
"尝试以其访问权限禁止的方式访问套接字。"。
我已尝试查看所有访问权限,但一般会丢失。
有人有想法吗? PHP语句是一个简单的angular.module('myRandomModule')
.controller('SomeControllerWithAFilterInjected', ['$filter', '$scope', SomeControllerWithAFilterInjectedFn]);
function SomeControllerWithAFilterInjectedFn($filter, $scope) {
$scope.arrayOfDataUsedInMyNgRepeat = ['foo', 'bar', 'so', 'many', 'elements'];
$scope.objectWhichHasABunchOfPropsBoundToNgModelsForFilteringThatIsUsedInYourFilter = {};
$scope.filteredArray = function() {
return $filter('nameOfThatFilterIMadeOneDay')($scope.arrayOfDataUsedInMyNgRepeat, $scope.objectWhichHasABunchOfPropsBoundToNgModelsForFilteringThatIsUsedInYourFilter);
}
}
,与数据库的连接是成功的。
答案 0 :(得分:0)
错误信息表示代码中存在某些相互冲突的内容。
似乎问题是由MySQL Native Driver MySQLi
引起的。
有两个小组函数mysql_*
& MySQL连接或查询代码中的mysqli_*
。
我搜索了SO线程Connection with mysqli() does not work, why?可能是该问题的解决方案。尽量只使用其中一个来避免可能的冲突。
根据PHP+MySQL
的Azure官方文档,您可以尝试使用PDO
代替MySQLi
。
希望它有所帮助。最诚挚的问候。