在 GQLQueries (JDO) Google app Engine JAVA 中选择特定行
我想从表中选择两列,是否可以这样做,或者我必须检索整个表。
I want to select two columns from the table so is it possible to do that or i have to retrieve whole table.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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