On Wednesday, March 23, 2016 at 5:44:34 PM UTC+2, Dave S wrote:
>
>
>
> On Wednesday, March 23, 2016 at 7:46:24 AM UTC-7, M Mihai wrote:
>>
>>
>>
>> On Wednesday, March 23, 2016 at 1:24:32 AM UTC+2, Dave S wrote:
>>>
>>>
>>>
>>> On Tuesday, March 22, 2016 at 3:45:25 PM UTC-7, M Mihai wrote:
>>>>
>>>> So I want to update the database while a scheduler task is running but 
>>>> the function won't update it. If I try to run the same function from a 
>>>> controller it will update the database.
>>>>
>>>> Here is the function:
>>>>
>>>> def Test():
>>>>     row = db(db.posts.Posted==False).select().first()
>>>>     row.update_record(Posted=True)
>>>>
>>>>
>>> In the scheduler environment, I believe you need db.commit().  If using 
>>> SQLITE, you may also see locking conflicts if the task runs during heavy 
>>> request activity.
>>>
>>> /dps
>>>  
>>>
>>
>>
>> It worked with db.commit(), thanks!
>>
>> I do use sqlite but I have 2 databases, one for scheduler and another for 
>> site, do you think the database may have locking conflicts? 
>>
>
>
> That should be okay; I believe the locking is per database (probably a 
> file lock; sqlite uses 1 file for each database).
>
> /dps
>  
>

Ok, thank you very much for helping me! 

>  
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to