Cells
You can find all basic actions for working with cells under the context menu. To call the context menu, right-click the cell that you want to modify. The following table lists all the actions.
Action | Shortcut | Description |
---|---|---|
Edit | F2 | Edit a cell value. Alternatively, select a cell and start typing a new value. To confirm your changes, press Enter. |
Maximize | Shift+Enter | Open a separate value editor where you can edit data that is stored in the cell. Also, you can enable soft wrap in the editor by clicking the Toggle Soft-Wrap button . If you store one-line JSON in a cell, you can click the Toggle Formatting icon. This action formats one-line XML and JSON strings. Also, you can preview images in the value editor. Note that to leverage the performance issues, the default LOB size is limited to 1024 bytes. It means that only 1024 bytes are loaded to the table editor. To increase this size and view larger images, open settings by pressing Ctrl+Alt+S, navigate to Maximum number of bytes loaded per value option. , and change the value of the |
Show Aggregate View | Open the aggregate view. In the aggregate view, you can select values of multiple cells and get a single summary value. Click the gear icon on the toolbar of the Aggregates tab to view, enable, and disable aggregates. Also, you can create your own aggregate scripts. Bundled scripts are located in Scratches and Consoles | Extensions | data | aggregators. To add your own aggregator, place your script to the aggregators directory. | |
Revert Selected | Ctrl+Alt+Z | Restore the previous cell value. |
Set Highlighting Language | Select a language that the IDE should use to highlight data in a cell. | |
Change Display Type | Select how the IDE should display binary data in the column. 16-byte data is displayed as UUID by default. | |
Set DEFAULT | Ctrl+Alt+D | Set the current cell value to the default value. For more information about how to set a default value, see Set default values for a cell. |
Set NULL | Ctrl+Alt+N | Set the current cell value to the NULL value. For more information about how to set a default value, see Set default values for a cell. |
Load File… | Upload a file into the field. Right-click a cell and select Load File…. | |
Save LOB… | Save content of a cell into a file. Works on cells with binary and text data. | |
Copy | Ctrl+C | Copy a cell value to the clipboard. |
Copy Aggregation Result | Copy a summary value for a range of cells. By default, JetBrains Rider copies the | |
Paste | Ctrl+V | Paste copied contents from the clipboard. |
Add Row | Add a row to the end of a table. | |
Delete Row | Alt+Delete | Delete selected rows. |
Clone Row | Create a duplicate of the selected row and adds the duplicate to the end of a table. | |
Quick Documentation | Ctrl+Q | Show information about selected objects. For different database objects, Quick Documentation shows corresponding information. For example, for a group of cells, you will see a summary for the selection. You can preview it in a regular or in a transposed view. |
Go To | Show a navigation submenu. From this submenu, you can navigate to the following entities:
| |
Filter by | Select a filter that you want to a column. | |
Full-Text Search… | Ctrl+Alt+Shift+F | Open a search window where you can search for data in your database or a group of databases. For more information about full-text search, see Full-text search in databases. |
Export Table to Clipboard | Copy the whole table to the clipboard. This action does not depend on Limit page size to setting. | |
Switch Session (your_current_session_name) | Open a window to select another session or create a new one. For more information about sessions, see Managing connection sessions. |
Using the quick documentation view
The quick documentation view provides details about values in the selected cell or cells. For example, if a cell contains long text, you will see the whole text. If a cell contains an image, you will see a preview of the image. Also, you can see records that are referenced in the current record as well as the records that reference the current one.
Object | Documentation view |
---|---|
Long text | If a cell contains long text, you will see the whole text. |
Image | If a cell contains an image, you will see a preview of the image. Also, you can |
Records | The quick documentation view for records displays records that are referenced in the current record and records that reference the current one. You can switch to a transposed view. In the transposed view, rows and columns are interchanged. To switch to the transposed view, click Transposed View. For more information about the transposed view in tables, see Transpose a table. |
Productivity tips
Set default values for a cell
When a new row is created and no values are specified for some of the cells, those cells are filled with their respective default Ctrl+Alt+D or NULL (Ctrl+Alt+N) values.
When you set default values for a cell, you can use corresponding actions from the context menu (Set DEFAULT and Set NULL).
In the Database tool window ( ), expand a data source tree.
Right-click the table and select Modify Table Ctrl+F6.
On the Columns tab, double-click the column that you want to edit.
In the Default field, specify the default value of the cell in the column. To allow NULL values, clear the Not null checkbox.
Edit multiple cell values simultaneously
Select a range of cells that you want to edit.
Start typing a new value. The changes are applied to all the selected cells.
To confirm the value, press Enter. To cancel editing, press Escape.
Saving a LOB into a file
You can save a binary large object (BLOB or LOB) from a cell into a file.
Right-click the cell that contains the LOB and select Save LOB.
In the save dialog, specify the name and location of the file and click OK.
Copy and paste cells between tables
You can copy Ctrl+C and paste Ctrl+V selected cells and ranges of cells - within the same table or from one table to another one. When pasting, JetBrains Rider converts data types automatically if and as necessary.