Re: stored procedures in initial SQL ?

2007-02-14 Thread Malcolm Tredinnick
On Wed, 2007-02-14 at 11:26 +0100, Bram - Smartelectronix wrote: > Malcolm Tredinnick wrote: > > At the moment, the only workaround is to call out to your own shell > > script (or other) to do the insert. If you have a look around line 506 > > of django/core/management.py, you can see where Django

Re: stored procedures in initial SQL ?

2007-02-14 Thread Bram - Smartelectronix
Malcolm Tredinnick wrote: > At the moment, the only workaround is to call out to your own shell > script (or other) to do the insert. If you have a look around line 506 > of django/core/management.py, you can see where Django emits a > "post-syncdb" signal after setting up the database, so you can

Re: stored procedures in initial SQL ?

2007-02-13 Thread Malcolm Tredinnick
On Tue, 2007-02-13 at 16:51 +0100, Bram - Smartelectronix wrote: > Hi, > > > with the preprocessing that's being done on 'initial' SQL before adding > it to the DB I'm getting into trouble with the stored procedures I would > like to add to the DB (for the model in question). > > The backend

stored procedures in initial SQL ?

2007-02-13 Thread Bram - Smartelectronix
Hi, with the preprocessing that's being done on 'initial' SQL before adding it to the DB I'm getting into trouble with the stored procedures I would like to add to the DB (for the model in question). The backend specific SQL gets treated the same way. I think it's impossible to change the re