MySql Memory tables doubt...

2016-03-20 Thread Jose Galvan
Hi, 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. In the process I need to use a temporary mysql table ( like a memory table that is alive while the session is active), my q

Re: MySql Memory tables doubt...

2016-03-19 Thread Jose Galvan
Thanks for your Answer Rene, Well you see.. tables were designed without Id primary key on it, instead tables use composed keys, ORM queries in Django are mostly based on an unique Id feature as Pk, this was the main reason for not to use ORM. And yes, tables are declared as manage=false, in fa

Re: MySql Memory tables doubt...

2016-03-19 Thread René Fleschenberg
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 u