显示由 Objectify for Google App Engine 生成的 SQL
我确信有一种方法可以做到这
一点有人知道是否有一种方法可以查看Objectify for Google App Engine生成的SQL(我想确保我的批处理sql语句正常工作)
我知道在Hibernate中有一个简单的方法打开此功能的 XML 密钥 - Objectify 有类似的东西吗?
i'm sure there's a way to do this
Does anybody know if there is a way to view the SQL generated by Objectify for Google App Engine (i want to make sure my batch sql statements are working correctly)
I know in Hibernate there's a simple XML key to turn this on - is there anything like this for Objectify?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有 SQL。 GAE 数据存储不使用 SQL;低级 API 大致看起来像一个“哈希图的哈希图”,具有一些基本操作,如获取、放置、删除和查询。
这可能会有所帮助:http://code.google.com/p/objectify-appengine /wiki/Concepts
也就是说,如果您为 com.googlecode.objectify 启用 DEBUG 日志记录,Objectify4 将记录大量信息。这有点像从消防水带里喝水。但是,您不会找到 SQL。
There is no SQL. The GAE datastore does not use SQL; the Low Level API roughly looks like a "hashmap of hashmaps" with a handful of primitive operations like get, put, delete, and query.
This may help: http://code.google.com/p/objectify-appengine/wiki/Concepts
That said, Objectify4 will log a large quantity of information if you enable DEBUG logging for com.googlecode.objectify. It's a bit like drinking from the firehose. You won't find SQL, however.