Answer the question
In order to leave comments, you need to log in
What tool to use to build reports on given SQL queries with GUI?
Share your experience on how to solve a problem of such a plan:
There is some database (PostgreSQL) and a set of queries / reports that need to be constantly done on it with different parameters. Like:
SELECT title, status, published_at
FROM articles
WHERE published_at BETWEEN <дата_начала_отчета> AND <дата_завершения_отчета>
AND status = 'declined';
Answer the question
In order to leave comments, you need to log in
With a GUI, you probably won't find that if you want a secure solution.
The most likely option is to take one of the common web frameworks and make a server application on the same machine as the database. Admin part - editing requests with parameters. The client part - selecting a request, entering parameters, choosing an output format (csv, xls, something else) and getting the result. Thus, the user will not get direct access to the database.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question