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? 

-- 
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