Reporting solutions on AppEngine
Actually, reporting has two separated tasks:
- Query data from one or more Kind(s)
- Rendering data into PDF, Excel, HTML format
For question #1:
App开发者_StackOverflowEngine does not support JOIN. Thus what is best solution for this purpose?For question #2:
Is there any solution which are able to run on AppEngine?Thanks
- If you have, for example, a customer and their orders, include the orders data in the same record as the customer instead of using a relational join to grab it. BigTable allows you to store arbitrary muti-value attributes in any column.
- A simple solution (assuming you want to use JSP) is DisplayTag.
精彩评论