Re: Easy to use graphical reporting tools for SQL

2015-07-21 Thread Lee Hinde
https://github.com/epantry/django-sql-explorer You can build the queries and they're available to whomever you want to give access. This assumes they have access to the django app. On Mon, Jul 20, 2015 at 2:09 PM, Kevin wrote: > In our office we have a Django application that uses a MySQL dat

Re: Easy to use graphical reporting tools for SQL

2015-07-21 Thread Vijay Khemlani
I guess any kind of report they want to generate will require some knowledge of relational databases. Considering that, I think Jasper Reports is a good tradeoff, It has a graphical interface to create the queries, and the reports can be accessed by anyone after it's query and design is done. On

Re: Easy to use graphical reporting tools for SQL

2015-07-21 Thread Stefano Probst
Know the "non-developers" SQL? I guest not, but if you can try MySQL workbench .. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send

Re: Easy to use graphical reporting tools for SQL

2015-07-20 Thread
Maybe you can try navicat. http://www.navicat.com/ 2015-07-21 5:09 GMT+08:00 Kevin : > In our office we have a Django application that uses a MySQL database. > Often I am asked to produce various reports that can range from being basic > dumps of query results or aggregate computations on query r

Easy to use graphical reporting tools for SQL

2015-07-20 Thread Kevin
In our office we have a Django application that uses a MySQL database. Often I am asked to produce various reports that can range from being basic dumps of query results or aggregate computations on query results. To do this I must connect to the Django shell to use the ORM or write the SQL dir