I need to query a database controlled by another application from my Django application. Ideally I'd also like to modify a few values.
I've configured a secondary database connection from within Django, but because the tables are controlled elsewhere, they don't fit neatly into Django's ORM. I'd rather make simple SQL queries from within my Django application.
Is this possible?