Hi,
On Wednesday 16 March 2016 12:58:17 Jose Galvan wrote:
> I am developing a web site to make queries and create new entries in a
> old Mysql order entry system so I need to use the Raw SQL django
> functionality more than ORM.
Are you sure that you cannot use the ORM? Maybe you can just use unmanaged
models?
https://docs.djangoproject.com/ja/1.9/ref/models/options/#managed
> In the process I need to use a temporary mysql table ( like a memory table
> that is alive while the session is active), my question is : In order to
> manipulate it, Do I need to declare this table in the models.py like any
> other table ?
Take a look at Django's multi-database support:
https://docs.djangoproject.com/en/1.9/topics/db/multi-db/
Yes, you should probably write models for the temporary table.
--
René