在 GQLQueries (JDO) Google app Engine JAVA 中选择特定行

发布于 2024-10-28 03:39:35 字数 36 浏览 5 评论 0原文

我想从表中选择两列,是否可以这样做,或者我必须检索整个表。

I want to select two columns from the table so is it possible to do that or i have to retrieve whole table.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

新人笑 2024-11-04 03:39:35

App Engine 数据存储不是关系数据库。

数据存储的基本单位称为实体。您始终获取整个实体,而不是实体的子集。

有关更多信息,请参阅 App Engine 数据存储区 API 文档以及低级 API 文档。

http://code .google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/package-summary.html

The App Engine data store is not a relational database.

The fundamental unit of data storage are called an entity. You always fetch the whole entity, and not a subset of the entity.

For more information look at the App Engine Datastore API documentation as well as the Low Level API documentation.

http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/package-summary.html

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