django-sql-explorer icon indicating copy to clipboard operation
django-sql-explorer copied to clipboard

Easily share data across your company via SQL queries. From Grove Collab.

Results 76 django-sql-explorer issues
Sort by recently updated
recently updated
newest added

Setting `EXPLORER_TASKS_ENABLED = True` causes the following exception: ``` ImportError: cannot import name 'task' from 'celery' (D:\Users\my-user\projects\my-project\venv-windows\lib\site-packages\celery\__init__.py) ``` ``` Django==3.2.9 django-sql-explorer==2.4.2 celery==5.2.1 ```

Add setting which prevents autorun of parameterized queries Issue #273

My settings: ``` EXPLORER_SQL_BLACKLIST = ( "ALTER", "CREATE TABLE", "DELETE", "DROP", "GRANT", "INSERT INTO", "OWNER TO", "RENAME ", "REPLACE", "SCHEMA", "TRUNCATE", "UPDATE", ) EXPLORER_SQL_WHITELIST = "REGEXP_REPLACE" ``` My query, running...

### Description This provides the functionality to save query params so that the queries execute with them each time one comes to the Query Detail page. Resolves: #482 ### Deployment...

I am curious if there is a way to save a query parameters value for later use instead of having to re-enter it each time one goes to the `Query...

I embedded a query with parameters using the procedure described in #485. The problem with this is that there is no way to add an optional "label" to the parameters...

Hello friends, in a recent project I wanted to embed a query in a view for all users to be able to run it. So instead of using the provided...

We recently switch to Django 5, when I pressed Download button in any side, it shows me `Query saved`, apparently this button is doing the function of `Save only` button.