You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This functionality is not currently available in QFrame, colloquially what you describe is an upsert.
A(i) B(s)
----- -----
1 one
2 two
// generates a prepared statement like:
INSERT INTO table (A, B) VALUES (?, ?);
We would just need to add an option to generate a dialect specific statement like ON CONFLICT .... You can see how the prepared statement is created here.
Is it possible to save a qframe, where we update primary keys if they exist?
The text was updated successfully, but these errors were encountered: