[Fixed]-How to get to an interactive SQLite command-line prompt in PyCharm Pro with a Django project?

1👍

The db interface (i.e. only allowing proper SQL like SELECT and so on) seems to be the only way to communicate to the db via pycharm.

I’d recommend just using the terminal for this. Type ./manage.py dbshell and you have what you want. Move the terminal to the left and you got sort of the the built in db connection offers. Or to the right, or top, or whereever you want.

Leave a comment