Display number of affected rows after an UPDATE or DELETE query #778
Replies: 2 comments 1 reply
-
|
@tconbeer I'd be willing to work on this if you think it's a good idea. |
Beta Was this translation helpful? Give feedback.
-
|
This will require a change to the adapter API, and then a change to adapters to implement the new API. Right now adapters should return An implementation of this feature would probably be a new Class in |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
In database consoles, when doing operations the user normally has an indication of how many rows were affected by a query. This is particular important for destructive queries as UPDATE or DELETE, so the user can know how many records were impacted by the operation and detect manual errors.
In psql for instance:
Unless I'm missing something, I don't see this number anywhere. I think it could be displayed in the alert that appears after the operation is successful:
Beta Was this translation helpful? Give feedback.
All reactions