There is

On Nov 28, 8:05 am, Robert <[EMAIL PROTECTED]> wrote:
> Hello !!
>
> I am using mysql as the backend and trying to use insert delayed of a
> query (http://dev.mysql.com/doc/refman/5.0/en/insert-delayed.html), to
> do this I have to change a bit the insert statement, and I want to
> know if is possible to know before executing the sql what is the sql
> INSERT statement that we are going to execute.

Maybe using the connection can help you:

from django.db import connection

# do your queries

connection.queries  # will display the queries you have executed

>
> or any way to add this "DELAYED" keyword in an insert statement.
>
> thanks in advance, r
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to