这是我的代码:
//this returns the object as described above
JSONObject jsonObject = serverData.SendData(new JSONObject().put(jsonStrings.REQUEST_RULES_ALL, " "));
//Trying to Convert to JSONArray, the get strings are correct,
//notice the REQUEST and REQUEST RESPONSE.
//problem line below
JSONArray JSONFirewallRules = new JSONArray ((JSONArray)jsonObject.get(jsonStrings.REQUEST_RULES_ALL_RESPONSE));
MSGBOX Line显示-1作为RecordCount,但同时rstResult.Fields(1).Value显示第一个记录值。即使我查看"直到...循环" msgbox或调试窗口中的所有记录都完美显示。 问题是它没有显示或工作recordcount属性。
答案 0 :(得分:0)
您不能以这种方式使用RecordCount
。
只有在之后你已经循环浏览所有记录,而不是之前你已经循环记录了这些记录。