我一直在尝试将我的Android应用程序连接到我在PC上创建的本地数据库以进行测试。我正在使用XAMPP创建数据库服务器。
var windowWidth = $(window).width();
var windowLength = $(window).height();
var yPos = [50, 100, 150, 200, 250];
var base = d3.select("#svgDiv").append("svg")
.attr("width", windowWidth)
.attr("height", windowLength);
$(document).ready(function () {
windowWidth = $(window).width();
windowLength = $(window).height();
base.attr("width", windowWidth)
.attr("height", windowLength);
document.body.style.overflow = 'hidden';
});
$(window).resize(function () {
windowWidth = $(window).width();
windowLength = $(window).height();
base.attr("width", windowWidth)
.attr("height", windowLength);
});
$("div").click(function (e) {
base.selectAll("circle")
.data(yPos)
.enter()
.append("circle")
.attr("x", function (d, i) {
return yPos[i];
})
.attr("y", function (d, i) {
return yPos[i];
})
.attr("cx", 20)
.attr("cy", 20)
.attr("r", 20)
.style("fill", "00ACCD");
console.log("click works");
});
我使用上面提到的代码来创建连接。
每次抛出以下错误:
网络错误IOException:数据库服务器已关闭连接。
我甚至尝试过使用ConnectionClass建立连接的另一种方法,但仍然得到了相同的结果。
我还配置了防火墙以允许入站请求。请帮忙!