gpt4 book ai didi

java - ResultSet getArray 函数不起作用?

转载 作者:行者123 更新时间:2023-12-01 15:29:40 37 4
gpt4 key购买 nike

我正在制作一个系统来检测用户是否自动捐赠。它首先从表中获取记录,其中收集的列设置为 0,用户名是当前用户的用户名。有一个 items 列,其中包含一个 json 编码数组,其中包含他们应该接收的内容。我需要使用 getArray 函数来获取 json 数组,而不是将其作为字符串获取。

我收到此错误: java.sql.SQLFeatureNotSupportedException

这是我的代码(如果您发现 json 有问题,请告诉我,无法测试它,因为 getArray 不起作用)。

public void checkForDonation(final Player player) throws JSONException {
try {
ResultSet rs = Launcher.getDBC()
.getQuery(
"SELECT * FROM `rewards` WHERE `username`= '"
+ player.getDisplayName()
+ "' AND `completed`='0'");
if (rs.next() == true) {
JSONArray json = new JSONArray();
JSONObject obj = new JSONObject();
try {
obj.put("items", rs.getArray("items"));
} catch (org.json.JSONException e) {
System.err.println(e);
e.printStackTrace();
}
json.put(obj);
System.out.println(json);
}
} catch (SQLException e) {
e.printStackTrace();
}
}

最佳答案

getArray() 绝不是一个自动将数据库中存储的 String 转换为 JSON 数组的方法。 JDBC 和 JSON 没有任何共同点。

阅读its javadoc :

Retrieves the value of the designated column in the current row of this ResultSet object as an Array object in the Java programming language.

Returns: an Array object representing the SQL ARRAY value in the specified column

(强调我的)

关于java - ResultSet getArray 函数不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9709128/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com