"Gert Cuykens" <[email protected]> wrote in message news:[email protected] > How do i do the following ? > > comments=comments||? > > When I add a comment nothing happens ?
What's in comments field before the update? Is it NULL, by any chance? NULL || 'anything' = NULL. Also, you probably want to compare oid to 1 (a numeric literal), not '1' (a string literal). Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

