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
would allow multiple SQL databases to safely work together, and if possible would defer FK checks until the end of the transaction (not sure that is std SQL).
Remember that the env contains connection-pools, which is a map from db name to db. Should be able to use with-transaction and replace all of those in that map in env to pass on to next handler.
The text was updated successfully, but these errors were encountered:
Surprising. Not sure how some transactions could even work that way...you'd have to loosen your desired constraints in any case where you needed to create a "loop" of data.
would allow multiple SQL databases to safely work together, and if possible would defer FK checks until the end of the transaction (not sure that is std SQL).
Remember that the
env
containsconnection-pools
, which is a map from db name to db. Should be able to usewith-transaction
and replace all of those in that map in env to pass on to next handler.The text was updated successfully, but these errors were encountered: