DAL how to increment column value

45 views
Skip to first unread message

Rob Paire

unread,
May 20, 2021, 5:20:21 PM5/20/21
to web2py-users
Hello all,

I am wondering if it's possible to use DAL update method to increment the value of table column H_REVNO in one line of code, and one trip to the database?

I tried this query, and a couple of similar variations, but could not get it to work.
db(db.KICKER.id == request.vars.kicker_id).update(H_REVNO=H_REVNO+1)

Here is what I am using for now
db.executesql("update KICKER set H_REVNO = H_REVNO + 1 where ID = "+ str(request.vars.kicker_id))  which of course works. 

Thank you all!




黄祥

unread,
May 22, 2021, 12:39:50 AM5/22/21
to web2py-users

Carlos Correia

unread,
May 25, 2021, 12:06:46 PM5/25/21
to web...@googlegroups.com
Às 18:20 de 20/05/21, Rob Paire escreveu:

Hi,

Using DAL you have to read the record first in other to get the value to be incremented. But, if there are many users it might lead to corrupted values due to concurrency.

As far as I know, the latest is the only sane approach to solve your problem.

Carlos Correia
=========================
MEMÓRIA PERSISTENTE
GSM:  917 157 146 (Signal, WhatsApp)
e-mail: ge...@memoriapersistente.pt
URL: http://www.memoriapersistente.pt
XMPP (Jabber): car...@memoriapersistente.pt
GnuPG: wwwkeys.eu.pgp.net

Rob Paire

unread,
May 25, 2021, 4:59:34 PM5/25/21
to web2py-users
Hi All
Thank you for the helpful comments!  I am fine leaving the SQL Execute statement in place, but thought the question was worth asking.

-Rob

valq...@gmail.com

unread,
May 25, 2021, 7:36:47 PM5/25/21
to web2py-users
db(...).update(some_field = db.some_table.some_field_or_another_field + 1)
- should work ( it is a single db-query)


вторник, 25 мая 2021 г. в 19:59:34 UTC+3, Rob Paire:

valq...@gmail.com

unread,
May 25, 2021, 8:06:04 PM5/25/21
to web2py-users

Rob Paire

unread,
May 25, 2021, 9:08:35 PM5/25/21
to web2py-users
Ah ha!!! Excellent - that looks so much better now!  I appreciate your help

-Rob

Reply all
Reply to author
Forward
0 new messages