RubyMine 2023.3 Help

Submit changes to a database

A commit ends a transaction and makes all changes available to other users. In RubyMine, you can select how you want to commit transactions: automatically or manually.

For more information about how to do it automatically, refer to Transaction mode.

To change the commit mode manually, use the Tx drop-down menu on the data editor toolbar.

Submit changes manually

By default, changes in tables are not submitted automatically. At first, you make changes in your local copy of the table, then you need to submit all changes to a database.

  • To submit changes to a database, click the Submit icon (The Submit icon), or press Control+Enter.

    Submit changes manually

Revert changes

Before you submit the changes, you can revert them.

The scope of the revert command is defined by the current selection in a table: the command is applied only to the changes within the selection. So you can revert an individual change, a group of changes or all the changes. If nothing is currently selected, the revert command is applied to the whole table.

  • To revert non-submitted changes, select and right-click a cell or a number of cells. Select Revert Selected Control+Alt+Z.

    Revert changes

Resolving conflicts when submitting changes

It might happen that someone has changed the piece of code that you have been editing. In this case, when you try to submit your code to a database, RubyMine displays a notification that there is a conflict, and you can resolve it by using a three-way merge.

  1. Click Merge.

  2. In the diff dialog, review your local changes and changes that were received from a server.

    Use the Ignore (the Ignore button) button to reject the change. Or, Accept (the Accept button or the Accept button) buttons to apply the change from the left or right pane. The middle pane shows the result of the merge operation.

  3. Click Save changes and finish merging.

Productivity tips

Display a warning when you edit an outdated piece of DDL code

To ensure that you are not deleting someone's work by submitting an outdated object, turn the Warn when editing outdated DDL option on.

  1. In the Database tool window ( View | Tool Windows | Database) , right-click a data source and select Properties.

  2. In the Data Sources and Drivers dialog, click the Options tab.

  3. In the Introspection section, select the Warn when editing outdated DDL checkbox.

    Display a warning when you edit an outdated piece of DDL code
Last modified: 11 December 2023