从 Google DataStore Java 检索最后一行
我想从数据存储中检索最后一行,那么我该怎么做? 我知道长方法,即
for(Table_name e: resultset)
{
cnt++;
}
results.get(cnt).getvalue();
我有以(数字)作为主键的字符串。我可以用它来获得降序排列吗???
有什么方法可以让我得到最后一行吗???
I want to retrieve the last row from the data store so how can i do that??
I know the long method i.e
for(Table_name e: resultset)
{
cnt++;
}
results.get(cnt).getvalue();
I have String with (number) as primary key.can i use it to get descending order???
Is there any method through which i can get the last row???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能应该按相反的顺序排序(如果您的查询可能的话,数据存储在这里有一些限制)并获得第一个结果。
另外,如果您将数字存储在字符串字段中,则顺序可能不是您想要的(您可能需要在此处填充)。
You should probably sort in the opposite order (if possible for your query, the data store has some restrictions here) and get the first result of that.
Also, if you store numbers in String fields the order may not be what you want it to be (you might need padding here).