feat(data-grid): add SQL INSERT as a copy format option#168
Merged
debba merged 1 commit intoTabularisDB:mainfrom May 7, 2026
Merged
feat(data-grid): add SQL INSERT as a copy format option#168debba merged 1 commit intoTabularisDB:mainfrom
debba merged 1 commit intoTabularisDB:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds SQL INSERT as a third option in the copy format selector, alongside the existing CSV and JSON options. Once selected,
Ctrl+C and right-click → "Copy selected row(s)" both produce ready-to-paste INSERT statements.
Example output:
INSERT INTO
users(id,name,email) VALUES (1, 'Alice', 'alice@example.com');INSERT INTO
users(id,name,email) VALUES (2, NULL, 'bob@example.com');Value quoting: null → NULL, booleans → TRUE/FALSE, numbers unquoted, strings/objects single-quoted with '' escaping.
Changes
(DataGrid, MultiResultPanel, StackedResultItem, ResultEntryContent, Editor)
tableName prop is present (plain query results)