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
Most databases have a notion of a "database transaction" where multiple tables can be updated at once, and on commit, the changes to all tables either succeed together or fail together. This avoids data irregularities where one table got updated and another did not, leaving the database in a nonsensical state.
I would like the same feature for Datalayer, where multiple data stores can be updated in a single call to batch_update. The spends of all the singletons would be interlocked with announcements such that the entire update is either successful, or unsuccessful, and it is not possible for one data store to be updated without also updating the other(s).
enhancementNew feature or requestsqlIssues with SQL/SQLite
1 participant
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Most databases have a notion of a "database transaction" where multiple tables can be updated at once, and on commit, the changes to all tables either succeed together or fail together. This avoids data irregularities where one table got updated and another did not, leaving the database in a nonsensical state.
I would like the same feature for Datalayer, where multiple data stores can be updated in a single call to batch_update. The spends of all the singletons would be interlocked with announcements such that the entire update is either successful, or unsuccessful, and it is not possible for one data store to be updated without also updating the other(s).
Beta Was this translation helpful? Give feedback.
All reactions