从 Google DataStore Java 检索最后一行

发布于 2024-10-23 01:26:55 字数 228 浏览 3 评论 0原文

我想从数据存储中检索最后一行,那么我该怎么做? 我知道长方法,即

 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花开雨落又逢春i 2024-10-30 01:26:55

您可能应该按相反的顺序排序(如果您的查询可能的话,数据存储在这里有一些限制)并获得第一个结果。

另外,如果您将数字存储在字符串字段中,则顺序可能不是您想要的(您可能需要在此处填充)。

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文