nephish wrote:

>Simon Brunning wrote:
>
>  
>
>>On 27 Jul 2005 04:29:33 -0700, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>> 
>>
>>    
>>
>>>Hey there,
>>>sorry , second question in as many days.
>>>i am trying to do some stuff with MySQLdb and the thing is, i can
>>>select records and such, but when i try to delete them, they dont
>>>really go away.
>>>   
>>>
>>>      
>>>
>>A fiver says you need to commit your changes.
>>
>> 
>>
>>    
>>
>ok, do i do that with cursor.commit() ?
>thanks
>  
>
Yes, or maybe you should write a lightweight layer between the dbapi and 
your program which can turn on and off the autocommit by calling 
"commit" and "begin" as query. I did this in my pgsql layer. Using 
transactions every time is almost as bad as never using them.

       Mage

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to