|
From: Mark <mar...@ya...> - 2011-08-20 23:15:45
|
How would I do this in SQLObject?
UPDATE
Table
SET
some_text = CONCAT(some_text, 'text')
WHERE
id = 57
Is it just
table = Table.get(57)
table.some_text = table.some_text + "text"
|