> [...]
> Ich stelle mir einfach eine IF abfrage vor:
> IF insert schlägt fehl THEN update ...
Aufgrund einer Abneigung gegen Exceptions schreibe ich so
etwas meist in der Form:
| UPDATE Table SET Something = 'something' WHERE ID = 'id';
| IF NOT FOUND THEN
| INSERT INTO Table (ID, Something) VALUES ('id', 'something');
| END IF;
Tim
--
Sent via pgsql-de-allgemein mailing list (pgsql-de-allgemein@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-de-allgemein
No comments:
Post a Comment