vote up 0 vote down star

Hi, does anybody know what is the equivalent to SQL "INSERT OR REPLACE" clause in SQLAlchemy and its SQL expression language?

Many thanks -- honzas

flag

2 Answers

vote up 1 vote down check

I don't think (correct me if I'm wrong) INSERT OR REPLACE is in any of the SQL standards; it's an SQLite-specific thing. There is MERGE, but that isn't supported by all dialects either. So it's not available in SQLAlchemy's general dialect.

The cleanest solution is to use Session, as suggested by M. Utku. You could also use SAVEPOINTs to save, try: an insert, except IntegrityError: then rollback and do an update instead. A third solution is to write your INSERT with an OUTER JOIN and a WHERE clause that filters on the rows with nulls.

link|flag
vote up 2 vote down
Session.save_or_update(model)
link|flag
This is not my case. I don't use session, I'm using Connection directly, so it must be done using SQL expression language and conn.execute(...) – honzas Apr 2 at 8:19
Anyway, this is 0.4 SQLA specific, for 0.5 you have to use Session.add(model) – Jiri Apr 29 at 22:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.